z property

double z

The z-coordinate for the point.

The minimum z-coordinate is -6,356,752 meters, which is the approximate radius of the earth (the WGS 84 datum semi-minor axis). The maximum z-coordinate is 55,000,000 meters. Will return NAN if an error occurs.

Implementation

double get z {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_PointBuilder_getZ(_handle, errorHandler);
  });
}
void z=(double value)

Implementation

set z(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PointBuilder_setZ(_handle, value, errorHandler);
  });
}