DrawCircleSector function
void
DrawCircleSector()
Implementation
void DrawCircleSector(
Vector2 center,
double radius,
double startAngle,
double endAngle,
int segments,
Color color,
) => ffi.using(
(arena) => raylib.DrawCircleSector(
arena.vector2(center).ref,
radius,
startAngle,
endAngle,
segments,
color.ptr.ref,
),
);