Assignment 1: Drawing Machine

I wanted to do something with flowers for this project and I love how trees look with flowers, so I made a cherry blossom type of tree. I wanted to simulate a kind of shimmering motion so I utilized the random function and changed the colors of the petals based on the mouse position. My…

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 – 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…

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…

Assignment 1 Updated – Ulysses Flores

For this assignment I wanted to test out different shapes and colors while making some transparent and similar to the background. I also used the if mouse pressed code to create the black square to change color as the  mouse is pressed, also the stroke weights and background differ more than the actual fill of…

Assignment 1- Julianna Kowalczyk

Below is the code to the first assignment.   PImage img; void setup() { size (500, 550); background (#0F1015); img=loadImage(“hi.JPG”); } void draw() { image(img, 130, 150); image(img, 130, 150, width/2, height/2); frameRate(4); if (mouseX>100); translate(mouseX, mouseY); textSize(25); text(“peace”, 10, 15); fill(random(150, 255), random(150, 255), random(150, 255)); } //<>//

Assignment 1-Hina Khalid

I started working on my assignment work by using some shapes. I used rectangle in for loop and used random function for different colors,Along with this I used variables to generate the small ellipse and used background function in the void setup() function so as the circles fill the screen.Im trying to make it more…

Second Sketch Assignment: Braeden Daugherty

These are the two pictures that you can get from my sketch that I call two face due to being able to draw two different pictures depending on certain keys pressed as well as using the mouse to change colors.

Processing Assignment 1

I aimed to create something that was both fun and colorful. I didn’t want to create shapes or figures that were too complex (as I’m still getting the hang of making them) but so far I have what is my interpretation of confetti and chaos through a mix of circles, squares, and elongated triangles that,…

Processing Assignment 1

I first started by substituting every 0 for “CIRCLES”.  I used a triangle in the background, centering it and setting the fill color to the same as the background, and setting the strokeWeight to 3 to get the outline. I used a mouse follow code and had circles randomly generated to follow the mouse. The…

Processing Assignment 1

I have three shapes: the consecutive squares, the two triangles, and the lines forming a broken up border. The stroke weight of the squares is 2, of the triangles is 3, and the lines are set to 6. When the user clicks the mouse around the frame, tiny colorful cirlces appear where he/she pressed. The…

Interactive Art project

Overview of project When 3 characters created by layering laser cut material are placed on a stand, different combinations of pressed switches result in different effects. The two types of effects are lights and sound from a neopixel strip and a buzzer. For example, if A+B are present (A and B stand for a character…