Processing Drawing Machine Mackenzie Carlson For this assignment, I wanted to create something pretty and simple. The only step you need to know is to click the screen- the rest will draw itself! The Code: var lines = []; var colors = []; function setup() { createCanvas(windowWidth, windowHeight); colors.push(color(205,183,186,255)); colors.push(color(233,170,187,255)); colors.push(color(200,76,86,255)); colors.push(color(208,27,8,255)); colors.push(color(190,102,88,255)); colors.push(color(220,74,77,255));…
Tag: Drawing Assignment
Assignment 1 – Drawing Machine
For this assignment, I took inspiration from Casey Reas’s Processing lecture/demonstration on how he uses a finite set of rules alongside Processing to create art. In my Processing sketch, I derived a small rule set to make something that looks chaotic yet structured. I first begin by drawing random points within a canvas. I then…