endAngle property

double endAngle

The parametric angle in radians of the end of the arc relative to the major axis of the embedded ellipse.

A positive value corresponds to a counterclockwise rotation from the major axis.

Implementation

double get endAngle {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_EllipticArcSegment_getEndAngle(
        _handle, errorHandler);
  });
}