#include <algorithm>
#include <cstdint>
#include <optional>
#include <ostream>
#include <string>
#include <utility>
#include <vector>
Go to the source code of this file.
|
enum class | plywoot::PlyDataType {
Char
, UChar
, Short
, UShort
,
Int
, UInt
, Float
, Double
} |
| Enumeration of data types supported by the PLY format. More...
|
|
enum class | plywoot::PlyFormat { Ascii
, BinaryBigEndian
, BinaryLittleEndian
} |
|
◆ PlyPropertyConstIterator
Convenience type alias for a const vector iterator pointing to a PlyProperty
.
Definition at line 145 of file types.hpp.
◆ PlyDataType
Enumeration of data types supported by the PLY format.
Definition at line 36 of file types.hpp.
◆ PlyFormat
Enumeration of all formats supported by the PLY format. This represents the format of the data stored in the PLY file, the header is always human-readable ASCII text.
Definition at line 72 of file types.hpp.
◆ operator<<()
std::ostream & plywoot::operator<< |
( |
std::ostream & |
os, |
|
|
PlyDataType |
type |
|
) |
| |
|
inline |
Outputs a textual representation of the given PLY data type type
.
- Parameters
-
os | output stream to output the textual representation of type to |
type | PLY data type enumeration value to output a textual representation for |
- Returns
- the output stream
os
Definition at line 44 of file types.hpp.