Processing-like framework for Pebble Smartwatch. Let's sketch a watchface with code!
void draw() { ellipse(56, 46, 55, 55); }
Draws a circle to the screen. The name of this function is 'ellipse', but it's not possible to draw an ellipse (oval) with Pebble SDK. If width is not equivalent to height, the circle's width and height are the average of width and height. By default, the first two parameters set the location, and the third and fourth parameters set the shape's width and height. The origin may be changed with the ellipseMode() function.
ellipse(a, b, c, d)
a float: x-coordinate of the circle
b float: y-coordinate of the circle
c float: width of the circle by default
d float: height of the circle by default
void
ellipseMode()
circle()