ellipseRgba method

bool ellipseRgba(
  1. Point<double> p,
  2. Point<double> rad,
  3. int r,
  4. int g,
  5. int b,
  6. int a, {
  7. int blendMode = SDL_BLENDMODE_BLEND,
})

Implementation

bool ellipseRgba(
  math.Point<double> p,
  math.Point<double> rad,
  int r,
  int g,
  int b,
  int a, {
  int blendMode = SDL_BLENDMODE_BLEND,
}) => gfx.ellipseRgba(
  this,
  p.x,
  p.y,
  rad.x,
  rad.y,
  r,
  g,
  b,
  a,
  blendMode: blendMode,
);