filledCircleRgba method

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

Implementation

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