y property

double y

The y-coordinate for the point.

Will return NAN if an error occurs.

Implementation

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

Implementation

set y(double value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_PointBuilder_setY(
      _handle,
      value,
      errorHandler,
    );
  });
}