ART Rounded Box

CSS

h1 {
    font: 20px Helvetica;
    font-weight: bold;
    margin-bottom: 20px;
}

JavaScript

var art = new ART(204, 204); //the "canvas"


var rect = new ART.Rectangle(100, 100,20); //rectangle with 10px rounded corner radius

rect.translate(50, 50).fill(hsb(0, 0, 0), 'blue'); //fill

rect.inject(art);

art.inject(document.body);