Type Alias rust::geometry::Point3DGeometry  
source · pub type Point3DGeometry = BaseGeometry<Point3D, MValue, BBox3D>;Expand description
Point3DGeometry is a 3D point
Aliased Type§
struct Point3DGeometry {
    pub coordinates: (f64, f64, f64),
    pub m_values: Option<BTreeMap<String, Value>>,
    pub bbox: Option<BBox3D>,
}Fields§
§coordinates: (f64, f64, f64)The geometry shape
m_values: Option<BTreeMap<String, Value>>The M-Values shape
bbox: Option<BBox3D>The BBox shape