Skip to content

Instantly share code, notes, and snippets.

ArrayList<PhylloTaxis> flowers;
int spacing = 500;
PhylloTaxis flower;
void setup(){
size(1920, 1080);
background(10, 20, 30);
@webbisswiftapps
webbisswiftapps / patterns.pde
Last active May 26, 2021 05:24
Processing sketch to generate a pattern using the 10print algorithm.
int canvasWidth = 1920;
int canvasHeight = 1080;
int originX = 0;
int originY = 0;
int lineUnit = 25;
int startX = originX;
int startY = originY;
void setup(){
size(1920, 1080);