Type Alias gaiaPoint

Source
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: f64

X coordinate

§Y: f64

Y coordinate

§Z: f64

Z coordinate: only for XYZ and XYZM dims

§M: f64

M measure: only for XYM and XYZM dims

§DimensionModel: i32

one of GAIA_XY, GAIA_XY_Z, GAIA_XY_M, GAIA_XY_ZM

§Next: *mut gaiaPointStruct

pointer to next item [double linked list]

§Prev: *mut gaiaPointStruct

pointer to previous item [double linked list]