KUG Broschure (2019)
/*————————————————-*/ /* Random Walk Generator */ /* Made with Processing */ /* Andreas Pirchner, 2019 */ /*————————————————-*/ import processing.pdf.*; PointCloud cloudy; PVector cloudOrigin; float spacing; int pathLength = 500; ArrayList neighbours; ArrayList randomWalk; void setup(){ size(1000,1000,P2D); background(255); cloudOrigin = new PVector(0,0,0); spacing = width / 100; cloudy = new PointCloud(80,80, cloudOrigin, spacing); randomWalk = new …