pub type gaiaPoint = gaiaPointStruct;Expand description
Container for OGC POINT Geometry
Aliased Type§
struct gaiaPoint {
pub X: f64,
pub Y: f64,
pub Z: f64,
pub M: f64,
pub DimensionModel: i32,
pub Next: *mut gaiaPointStruct,
pub Prev: *mut gaiaPointStruct,
}Fields§
§X: f64X coordinate
Y: f64Y coordinate
Z: f64Z coordinate: only for XYZ and XYZM dims
M: f64M measure: only for XYM and XYZM dims
DimensionModel: i32one of GAIA_XY, GAIA_XY_Z, GAIA_XY_M, GAIA_XY_ZM
Next: *mut gaiaPointStructpointer to next item [double linked list]
Prev: *mut gaiaPointStructpointer to previous item [double linked list]