filledEllipseColor method

bool filledEllipseColor(
  1. Point<double> p,
  2. Point<double> rad,
  3. int color, {
  4. int blendMode = SDL_BLENDMODE_BLEND,
})

Implementation

bool filledEllipseColor(
  math.Point<double> p,
  math.Point<double> rad,
  int color, {
  int blendMode = SDL_BLENDMODE_BLEND,
}) => gfx.filledEllipseColor(
  this,
  p.x,
  p.y,
  rad.x,
  rad.y,
  color,
  blendMode: blendMode,
);