filledEllipseColor method

int filledEllipseColor(
  1. Point<double> p,
  2. Point<double> rad,
  3. int color
)

Implementation

int filledEllipseColor(
    math.Point<double> p, math.Point<double> rad, int color) {
  // 500
  return gfx.filledEllipseColor(
      this, p.x.toInt(), p.y.toInt(), rad.x.toInt(), rad.y.toInt(), color);
}