DrawCircleSector method

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

Implementation

void DrawCircleSector(
  Vector2C center,
  double radius,
  double startAngle,
  double endAngle,
  int segments,
  ColorC color,
) {
  return _DrawCircleSector(
    center,
    radius,
    startAngle,
    endAngle,
    segments,
    color,
  );
}