Fun with processing

Always amazing to see what sort of playful and visually attractive experience you can spark with just a few lines of code! Starting a series here titled “Fun With Arrays” in Processing. The code: int num =150; int[] x = new int[num]; int[] y = new int[num]; void setup() { size(600, 400); noStroke(); fill(255, 102); … Continue reading Fun with processing