How I made my own Processing Java Library
Since launching my own shop I’ve noticed that I wanted to spend more time improving my generative art making workflow. By writing better code my work files become hopefully more stable and easy to work with. During the years I’ve created quite a bunch of helper classes and methods that help me with f.e. picking random numbers, color palettes, vector math, collision detection and much more. This meant that for each new project I needed to copy and paste all these classes & methods. Occasionally once of these classes or methods could have a small bug or improvement had a small bug I needed to replace this in all my projects. It was time to look into creating my own library. One place to store all my helper classes & methods which can be imported in all my projects. But how was I going to create own?
19 Jul 2022
•
4 min