Type Alias Point3DGeometry

Source
pub type Point3DGeometry = BaseGeometry<Point3D, MValue, BBox3D>;
Expand description

Point3DGeometry is a 3D point

Aliased Type§

struct Point3DGeometry {
    pub _type: GeometryType,
    pub coordinates: (f64, f64, f64),
    pub m_values: Option<BTreeMap<String, ValueType>>,
    pub bbox: Option<BBox3D>,
}

Fields§

§_type: GeometryType

The geometry type

§coordinates: (f64, f64, f64)

The geometry shape

§m_values: Option<BTreeMap<String, ValueType>>

The M-Values shape

§bbox: Option<BBox3D>

The BBox shape