Type Alias LineString3DGeometry

Source
pub type LineString3DGeometry = BaseGeometry<LineString3D, LineStringMValues, BBox3D>;
Expand description

LineString3DGeometry is a 3D line

Aliased Type§

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

Fields§

§_type: GeometryType

The geometry type

§coordinates: Vec<(f64, f64, f64)>

The geometry shape

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

The M-Values shape

§bbox: Option<BBox3D>

The BBox shape