MCPcopy Create free account
hub / github.com/PDAL/PDAL / DimType

Class DimType

pdal/DimType.hpp:43–58  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41{
42
43struct DimType
44{
45 DimType() : m_id(Dimension::Id::Unknown), m_type(Dimension::Type::None)
46 {}
47 DimType(Dimension::Id id, Dimension::Type type,
48 double scale = 1.0, double offset = 0.0) :
49 m_id(id), m_type(type), m_xform(scale, offset)
50 {}
51 DimType(Dimension::Id id, Dimension::Type type, XForm xform) :
52 m_id(id), m_type(type), m_xform(xform)
53 {}
54
55 Dimension::Id m_id;
56 Dimension::Type m_type;
57 XForm m_xform; // A convenience for some formats.
58};
59typedef std::vector<DimType> DimTypeList;
60
61} // namespace pdal

Callers 6

initializeMethod · 0.85
dimTypeMethod · 0.85
parseDimensionsMethod · 0.85
createDimsMethod · 0.85
dimTypesMethod · 0.85
findDimTypeMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected