filledEllipseRgba method

bool filledEllipseRgba(
  1. Point<double> p,
  2. Point<double> rad,
  3. int r,
  4. int g,
  5. int b,
  6. int a,
)

Implementation

bool filledEllipseRgba(math.Point<double> p, math.Point<double> rad, int r,
    int g, int b, int a) {
  return gfx.filledEllipseRgba(this, p.x, p.y, rad.x, rad.y, r, g, b, a);
}