xMin property
The x minimum value of the Envelope being constructed.
Returns NAN if an error occurs.
Implementation
double get xMin {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_EnvelopeBuilder_getXMin(
_handle,
errorHandler,
);
});
}
Implementation
set xMin(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_EnvelopeBuilder_setXMin(
_handle,
value,
errorHandler,
);
});
}