isCircular property
Indicates if this arc is a portion of the boundary of a 2D circle.
An elliptic arc is circular if the ellipse upon which it is based is a circle, meaning the lengths of its major and minor axes are equal.
Use EllipticArcSegment.circularEllipticArcWithCenterRadiusAndAngles and EllipticArcSegment.circularEllipticArcWithStartEndAndInterior to create circular arcs.
Implementation
bool get isCircular {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_EllipticArcSegment_getIsCircular(
_handle,
errorHandler,
);
});
}