setZ method

void setZ(
  1. {required double zMin,
  2. required double zMax}
)

Set the z-values for the envelope.

Parameters:

  • zMin — The z minimum value for the envelope.
  • zMax — The z maximum value for the envelope.

Implementation

void setZ({required double zMin, required double zMax}) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_EnvelopeBuilder_setZ(_handle, zMin, zMax, errorHandler);
  });
}