m property

double m

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,
    );
  });
}
void m=(double value)

Implementation

set m(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PointBuilder_setM(
      _handle,
      value,
      errorHandler,
    );
  });
}