ellipseColor method

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

Implementation

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