pub type Polygon3DGeometry = BaseGeometry<Polygon3D, PolygonMValues, BBox3D>;
Expand description
Polygon3DGeometry is a 3D polygon with potential holes
Aliased Type§
struct Polygon3DGeometry {
pub _type: GeometryType,
pub coordinates: Vec<Vec<(f64, f64, f64)>>,
pub m_values: Option<Vec<Vec<BTreeMap<String, ValueType>>>>,
pub bbox: Option<BBox3D>,
}
Fields§
§_type: GeometryType
The geometry type
coordinates: Vec<Vec<(f64, f64, f64)>>
The geometry shape
m_values: Option<Vec<Vec<BTreeMap<String, ValueType>>>>
The M-Values shape
bbox: Option<BBox3D>
The BBox shape