drawEllipseLines function

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

Draw ellipse outline.

Implementation

void drawEllipseLines(
  int centerX,
  int centerY,
  double radiusH,
  double radiusV,
  Color color,
) {
  return library.DrawEllipseLines(
    centerX,
    centerY,
    radiusH,
    radiusV,
    color.ref,
  );
}