DrawCircleSector method
void
DrawCircleSector()
Implementation
void DrawCircleSector(
Vector2D center,
num radius,
num startAngle,
num endAngle,
num segments,
ColorD color,
) => run(
() => 'DrawCircleSector($center, $radius, $startAngle, $endAngle, $segments, $color)',
() => rl.Core.DrawCircleSector(
rl.Temp.Vector2$.Ref1(center).ref,
radius.toDouble(),
startAngle.toDouble(),
endAngle.toDouble(),
segments.toInt(),
rl.Temp.Color$.Ref1(color).ref,
),
);