m property
The m-value for the point.
Will return NAN if an error occurs.
Implementation
double get m {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PointBuilder_getM(
_handle,
errorHandler,
);
});
}
Implementation
set m(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PointBuilder_setM(
_handle,
value,
errorHandler,
);
});
}