DK for Delphi | GisTypes.TGIS_Point3D | Records | Fields
3D point type with X, Y, Z, and M coordinates for vector geometry and Shapefile compatibility.
// Delphi type TGIS_Point3D = record end;
// C++ Builder struct DECLSPEC_DRECORD TGIS_Point3D { };
| Name | Visibility | Description | |
|---|---|---|---|
| M | public | M measure coordinate. | |
| X | public | X coordinate. | |
| Y | public | Y coordinate. | |
| Z | public | Z coordinate. | |
PURPOSE: Represents a point in three-dimensional space with an additional M value used as a measure coordinate in GIS (Geographic Information System) data.
BEHAVIOR: Stores X and Y horizontal coordinates, Z elevation, and M measure. The M coordinate is included for Shapefile (Esri Vector Format) compatibility and supports linear referencing or other per-vertex measure values.