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