geometry property
The geometry of a polyline barrier.
The polyline geometry of a Polyline barrier.
Implementation
Polyline? get geometry {
final objectHandle = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_PolylineBarrier_getGeometry(_handle, errorHandler);
});
return Polyline._fromHandle(objectHandle);
}
Implementation
set geometry(Polyline? value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_PolylineBarrier_setGeometry(
_handle, value?._handle ?? ffi.nullptr, errorHandler);
});
}