| 41 | { |
| 42 | |
| 43 | struct 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 | }; |
| 59 | typedef std::vector<DimType> DimTypeList; |
| 60 | |
| 61 | } // namespace pdal |
no outgoing calls
no test coverage detected