Processing-like framework for Pebble Smartwatch. Let's sketch a watchface with code!
void draw() { point(30, 20); point(85, 20); point(85, 75); point(30, 75); }
Draws a point, a coordinate in space at the dimension of one pixel. The first parameter is the horizontal value for the point, the second value is the vertical value for the point.
point(x, y)
x float: x-coordinate of the point
y float: y-coordinate of the point
void