filledCircleColor function

bool filledCircleColor(
  1. Pointer<SdlRenderer> renderer,
  2. double x,
  3. double y,
  4. double rad,
  5. SdlxColor color, {
  6. int blendMode = SDL_BLENDMODE_BLEND,
})

Implementation

bool filledCircleColor(
  Pointer<SdlRenderer> renderer,
  double x,
  double y,
  double rad,
  SdlxColor color, {
  int blendMode = SDL_BLENDMODE_BLEND,
}) => filledEllipseRgba(
  renderer,
  x,
  y,
  rad,
  rad,
  color.r,
  color.g,
  color.b,
  color.a,
  blendMode: blendMode,
);