depth property

double depth

The depth (ZMax - ZMin) for the envelope.

A 2D envelope has zero depth. Returns NAN if the envelope is empty or if an error occurs.

Implementation

double get depth {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Envelope_getDepth(_handle, errorHandler);
  });
}