void setup() { size(300,300); noLoop(); background(0); fill(255,20); stroke(155); strokeWeight(1); smooth(); } void draw() { pinheads(20, 90); pinheads(70, 160); pinheads(160, 250); } void pinheads(int x, int y) { ellipse(x, y, x, x); ellipse(y, x, y, y); ellipse(y-x, y-x, y-x, y-x); }