Draw a rounded rectangle at x
and y
.
Source
GraphicsCommandRectRound rectRound(num x, num y, num width, num height, num ellipseWidth, num ellipseHeight) { var command = new GraphicsCommandRectRound(x, y, width, height, ellipseWidth, ellipseHeight); this.addCommand(command); return command; }