This idea/project came after having watch the video Build the Cities from Raven Kwok, and the motivation to learn more about Processing
import ktxo.art.processing.*;
Grid g1;
void setup() {
size(400, 400, P3D);
g1 = new Grid(this, 4, 4, 200, 200);
g1.move(new PVector(100, 100));
g1.dump(false);
}
void draw() {
background(0);
g1.render();
}
See also examples
- Download latest version from Releases
- Add the library to Processing, see How to Install a Contributed Library