hasZ property
True if the geometry has z-coordinate values, false otherwise.
Only 3D geometries contain z-coordinate values. These values typically represent elevation, height, or depth.
Implementation
bool get hasZ {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Geometry_getHasZ(_handle, errorHandler);
});
}