setZ method
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,
);
});
}