DrawCircleSector function

void DrawCircleSector(
  1. Vector2 center,
  2. double radius,
  3. double startAngle,
  4. double endAngle,
  5. int segments,
  6. Color color,
)

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,
  ),
);