zMax property

double zMax

The z maximum value of the Envelope being constructed.

Returns NAN if an error occurs.

Implementation

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

Implementation

set zMax(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_EnvelopeBuilder_setZMax(_handle, value, errorHandler);
  });
}