roundedBoxColor method

bool roundedBoxColor(
  1. Rectangle<double> rect,
  2. double rad,
  3. int color, {
  4. int blendMode = SDL_BLENDMODE_BLEND,
})

Implementation

bool roundedBoxColor(
  math.Rectangle<double> rect,
  double rad,
  int color, {
  int blendMode = SDL_BLENDMODE_BLEND,
}) => gfx.roundedBoxColor(
  this,
  rect.left,
  rect.top,
  rect.right,
  rect.bottom,
  rad,
  color,
  blendMode: blendMode,
);