Processing-like framework for Pebble Smartwatch. Let's sketch a watchface with code!
void draw() { circle(56, 46, 55); }
Draws a circle to the screen. By default, the first two parameters set the location, and the third parameters set the shape's width and height. The origin may be changed with the ellipseMode() function.
circle(a, b, c)
a float: x-coordinate of the circle
b float: y-coordinate of the circle
c float: width and height of the circle by default
void
ellipse()
ellipseMode()