startAngle property

double startAngle

The parametric angle in radians of the start 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 startAngle {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_EllipticArcSegment_getStartAngle(
        _handle, errorHandler);
  });
}