GuiShapePolar constructor

GuiShapePolar({
  1. required GuiPolarFunction formula,
  2. int sampling = 64,
  3. required GeoAngle startAngle,
  4. bool clockwise = false,
  5. BoxFit boxFit = BoxFit.none,
  6. double cornerRadius = 0,
  7. double polarBeginAngle = 0.0,
  8. double polarEndAngle = 2 * pi,
})

Implementation

GuiShapePolar(
    {required this.formula,
    this.sampling = 64,
    required this.startAngle,
    this.clockwise = false,
    this.boxFit = BoxFit.none,
    this.cornerRadius = 0,
    this.polarBeginAngle = 0.0,
    this.polarEndAngle = 2 * pi});