Polygon3DGeometry

Type Alias Polygon3DGeometry 

Source
pub type Polygon3DGeometry<M = Map<String, ValueType>> = BaseGeometry<Vec<Vec<M>>, Vec<Vec<Point3D>>, BBox3D>;
Expand description

Polygon3DGeometry is a 3D polygon with potential holes

Aliased Type§

pub struct Polygon3DGeometry<M = Map<String, ValueType>> {
    pub _type: GeometryType,
    pub coordinates: Vec<Vec<Point3D>>,
    pub m_values: Option<Vec<Vec<M>>>,
    pub bbox: Option<BBox3D>,
}

Fields§

§_type: GeometryType

The geometry type

§coordinates: Vec<Vec<Point3D>>

The geometry shape

§m_values: Option<Vec<Vec<M>>>

The M-Values shape

§bbox: Option<BBox3D>

The BBox shape