DrawRing function

void DrawRing(
  1. Vector2C center,
  2. double innerRadius,
  3. double outerRadius,
  4. double startAngle,
  5. double endAngle,
  6. int segments,
  7. ColorC color,
)

Implementation

void DrawRing(
  Vector2C center,
  double innerRadius,
  double outerRadius,
  double startAngle,
  double endAngle,
  int segments,
  ColorC color,
) => _module.DrawRing(center, innerRadius, outerRadius, startAngle, endAngle, segments, color);