filledPieRgba function

bool filledPieRgba(
  1. Pointer<SdlRenderer> renderer,
  2. double x,
  3. double y,
  4. double rad,
  5. double start,
  6. double end,
  7. int r,
  8. int g,
  9. int b,
  10. int a, {
  11. int blendMode = SDL_BLENDMODE_BLEND,
})

Implementation

bool filledPieRgba(
  Pointer<SdlRenderer> renderer,
  double x,
  double y,
  double rad,
  double start,
  double end,
  int r,
  int g,
  int b,
  int a, {
  int blendMode = SDL_BLENDMODE_BLEND,
}) => _pieRgba(
  renderer,
  x,
  y,
  rad,
  start,
  end,
  r,
  g,
  b,
  a,
  1,
  blendMode: blendMode,
);