Drawing Machine Assignment 1

      For this project, I wanted to create many different colored shapes that randomly bounced around using multiple variables and if statements and a command to change the background and stroke colors when the mouse is clicked. int rad = 60; // Width of the shape float xpos, ypos; // Starting position of…

Drawing Machine

For the Processing Drawing Machine I decided to follow the assignment literally and make an actual drawing. This drawing is inspired by two drawings made by BTS’ V. The two faces are composed out of ellipses, rectangles, arcs, and a for loop. Even though these are all just simple shapes, the most time and complexity…

Assignment 1

For this assignment I went for something fairly simple. My idea was to create a rainy day image with a moving cloud image that would float around by manipulating the mouse. I was able to get a nice backdrop of rain falling with the help of some videos. Initially, I wanted to download a cloud…

Assignment 1 (final) – Daniel Barrera

Here is my final version of Assignment 1. here i kept a lot of things the same but added more actions to the UFO. This time it shoots rays at the satellite as if drawing energy from it. Space is pretty big so the planets are in place but when moving around the mouse while…

Assignment #1: Processing Drawing Machine – Eric Silva

  I wanted to figure out how to make objects follow a certain paths given by equations. I began with a simple equation where a square follows a direct path (linear equation) and then I moved towards exponential equations. Afterwards I made it so that the squares would converge to distance where you would click…

Drawing Machine – Katrin Svadlena

I call mine CirclesFollow. I set out to code something that can write words with circles; I find circles to be aesthetically pleasing. So, first I made the background a deep blue, to provide contrast to the circles. I had a triangle of a lighter blue in the background, with the alpha value so it…

Drawing Machine – Cassie Ogburn

For my Drawing Machine Assignment I must admit I diverted completely from my previous drafts to make something entirely different but something I am very happy with. For this I combined my love for digital art with various instances of code in order to make a scrolling scene of sorts. I drew two images of…

Drawing machine – Hina Khalid

In this drawing machine I’m creating 3D shapes like cube and sphere that move in all three directions. There is some code for saving the frames and background have random rectangles and ellipse in different directions. float circleX; float circleY; float i = 180; float r = 0; void setup() { size(640,400,P3D); } void keyPressed()…

Assignment 1: Drawing Machine

On this assignment, there are many parts to it. When you first play the code, the background is green with buzzing colors in an ellipse. Once you press the mouse, the background changes to blue and the ellipses erase to start a new design. If you press any key, the background will change to yellow…

Drawing Machine – Azka Mazher

For my drawing machine, I started off with making a staircase of squares using a for loop, each square being exactly 25 pixels down and 25 to the right of the previous one. I then proceeded to add triangles on either side of the line of squares and made cornered borders made of two lines…

Assignment 1- Drawing Machine

/* * A project in processing by Laurel Doak: * Art 150 project 1, UIC * * Interactive flower field */ //Global saved data color grassFill = #1C8300; color grassStroke = #57B43E; ArrayList <Flower>flower_field = new ArrayList(); void setup() { size(500, 500); background(255); } void keyPressed() { if (key == ‘s’ ) { saveFrame(“drawing-####.png”); }…

Processing Assignment 1 (Updated)

For my Final Version of this assignment, I decided to continue making alterations to the if(mousePressed) code and added some color changing text that follows the mouse wherever it is moved and stops in its path once it is pressed. Besides this, I decided to insert a picture (specifically of a party hat) to fit…