x property

double x

The x-coordinate for the point.

Returns NAN if an error occurs.

Implementation

double get x {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Point_getX(_handle, errorHandler);
  });
}