DrawRingLines method

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

Implementation

void DrawRingLines(
  Vector2C center,
  double innerRadius,
  double outerRadius,
  double startAngle,
  double endAngle,
  int segments,
  ColorC color,
) {
  return _DrawRingLines(
    center,
    innerRadius,
    outerRadius,
    startAngle,
    endAngle,
    segments,
    color,
  );
}