float angle=0; float radius=50; void setup(){ } void draw(){ point(cos(angle)*radius,sin(angle)*radius); angle+=0.01; }