Type Alias rust::geometry::Polygon3DGeometry

source ·
pub type Polygon3DGeometry = BaseGeometry<Polygon3D, PolygonMValues, BBox3D>;
Expand description

Polygon3DGeometry is a 3D polygon with potential holes

Aliased Type§

struct Polygon3DGeometry {
    pub coordinates: Vec<Vec<(f64, f64, f64)>>,
    pub m_values: Option<Vec<Vec<BTreeMap<String, Value>>>>,
    pub bbox: Option<BBox3D>,
}

Fields§

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

The geometry shape

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

The M-Values shape

§bbox: Option<BBox3D>

The BBox shape