x property

double x

The x-coordinate for the point.

Will return NAN if an error occurs.

Implementation

double get x {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_PointBuilder_getX(
      _handle,
      errorHandler,
    );
  });
}
void x=(double value)

Implementation

set x(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PointBuilder_setX(
      _handle,
      value,
      errorHandler,
    );
  });
}