Processing-like framework for Pebble Smartwatch. Let's sketch a watchface with code!

void draw() {
rect(30, 20, 55, 55);
}
Draws a rectangle to the screen. A rectangle is a four-sided shape with every angle at ninety degrees. By default, the first two parameters set the location of the upper-left corner, the third sets the width, and the fourth sets the height. The way these parameters are interpreted, however, may be changed with the rectMode() function.
rect(a, b, c, d)
a float: x-coordinate of the rectangle by default
b float: y-coordinate of the rectangle by default
c float: width of the rectangle by default
d float: height of the rectangle by default
void
quad()