targetGeometry property

Geometry targetGeometry

The viewpoint target geometry, if the Viewpoint.viewpointType is ViewpointType.boundingGeometry.

Implementation

Geometry get targetGeometry {
  final objectHandle = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_Viewpoint_getTargetGeometry(_handle, errorHandler);
  });
  return Geometry._fromHandle(objectHandle)!;
}