sample embed

here’s the code:


void setup() {
size(200, 200);
frameRate(10);
}
void draw() {
background(#ffffff);
ellipse(100, 100, random(50), random(50));
}