DrawEllipse method

void DrawEllipse(
  1. int centerX,
  2. int centerY,
  3. double radiusH,
  4. double radiusV,
  5. ColorC color,
)

Draw ellipse

Implementation

void DrawEllipse(int centerX, int centerY, double radiusH, double radiusV, ColorC color)
  => _DrawEllipse(centerX, centerY, radiusH, radiusV, color);