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