Generative art scripts built with NumPy and Matplotlib — no extra dependencies.
Each script runs standalone and saves a PNG to the img/ folder.
pip install -r requirements.txt
# run a single artwork
python artworks/04_flower_of_life.py
# run the parametric generator
python template/generator.pyOutput PNGs are saved to img/ (full resolution, git-ignored).
template/generator.py is a parametric version of the Phyllotaxis Temple.
Edit these three variables at the top:
density = "low" # "low" | "mid" | "high"
mood = "ritual" # "ritual" | "techno" | "minimal"
gates = "none" # "square" | "octagon" | "none"Each combination produces a unique composition. Output is saved as
img/generator_{density}_{mood}_{gates}.png.
.
├── artworks/ # 10 standalone scripts
├── template/ # parametric generator
├── img/
│ └── previews/ # low-res previews for this README
└── requirements.txt
- Python 3.9+
numpymatplotlib
© 2025 Matteo Cavo — CC BY-NC 4.0 Free to share and adapt with attribution. Commercial use is not permitted.









