x property
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,
);
});
}
Implementation
set x(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PointBuilder_setX(
_handle,
value,
errorHandler,
);
});
}