Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
drawRoundedRect(x, y, width, height, radius)
{
this.drawShape(new RoundedRectangle(x, y, width, height, radius));
return this;
}
drawRoundedRect(x, y, width, height, radius)
{
return this.drawShape(new RoundedRectangle(x, y, width, height, radius));
}