Arc constructor

Arc({
  1. double startAngle = 0,
  2. double angle = TAU / 4,
  3. double radius = 1,
  4. Vector3 arcCenter = ORIGIN,
  5. int numComponents = 9,
  6. Color color = WHITE,
})

Implementation

Arc(
    {this.startAngle = 0,
    this.angle = TAU / 4,
    this.radius = 1,
    this.arcCenter = ORIGIN,
    this.numComponents = 9,
    Color color = WHITE})
    : super(color: color);