Interactive_Project_Proposal_Form Attached is the proposal form which shows all information on my project.
intro to new media arts
Interactive_Project_Proposal_Form Attached is the proposal form which shows all information on my project.
For my Interactive Assignment, I decided to create a MIDI controller that would only use the Arduino circuit playground board and a servo, the Arduino Circuit board will be turned into a sort of instrument to where you can touch certain spots of the board and a different sound will be heard, I will be…
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…
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…
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…
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…
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…
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)); } //<>//
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…
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.
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,…
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…