Pop out blooming rose Materials needed: 2 black sheets of paper sheets of print paper 3 red LEDs conductive fabric tape 3 paper clips or tape colored pencils (optional) glue 3 button batteries Step 1: Decorating – using a sheet of printer paper draw out petals of a rose, cut and color them, then curve…
Category: All Posts
Creative Switch: Interactive Bottle
For my creative switch I wanted to use something you typically wouldn’t want near electricity, water. Using water as a switch might seem strange at first, because you might think mixing water and electricity is a bad idea, but water can work just like any other conductor. I decided to make a bottle light up…
Creative Switch: Catching Fireflies
When I think about the concept of a switch, turning a light on and off, I think about my terrible grammar growing up. “Open the lights,” My mom would tell me. “Close the lights,” I’d imitate her. So I thought about an action that would mean “To open and close.” I also thought about light…
Peter li assignment 1
Drawing machine void setup() { size(600,300); background(); } void draw() { fill(random(255), random(255),random(255),random(255)); rect(random(600),random(600),random(255),random(255)); if (mousePressed == true){ line (pmouseX, pmouseY, mouseX,mouseY); } }
Christmas Tree
In my dorm room, I have a bunch of Christmas lights because Christmas holds a special place in my heart. It’s a time where all of my family members get together and celebrate without having to worry about reality. We all just enjoy each other’s presence in the moment. I created this because with the…
Assignment 1 – Drawing Machine
I was inspired to capture the joy that plants might feel when they are being watered. This is the sentiment I tried to emulate in my piece, “Happy Flower.” The empty watering can follows the user’s mouse, and when you press down, water should come out of the watering can. The sun in the corner…
Assignment 1
I didn’t really know what kind of image I wanted to create so this image came about as I was learning different things on Processing. I didn’t get too elaborate as I came across a lot of errors when I did, sadly. But along the way I came up with the idea of drawing a…
Assignment 1 – Drawing Machine
Pretty simply titled “Frog”, this sketch was originally intended to be something very different. After messing around with the random function for a bit, I kind of liked the idea of making a background that changes but also incorporating user input. There are sixteen lily pads that are generated with a for loop at random coordinates,…
Assignment 1
For this assignment I decided to experiment with simple complexity using processing. I had the idea to try out a 3D sketch, with features like camera control, color, randomness, and more. With some simple loops, I was able to create a random matrix of 3D shapes that form interesting patterns. The space can then be…
Assignment 1
For this assignment I didn’t have a particular design in mind. Instead my objective was to explore the basics of color and shapes, while incorporating codes that would enhance those features. I initially began with random shapes but as I worked with the coordinates I slowly built off of that. For some parts I took…
Assignment 1 Drawing Machine
This drawing is called “Fly Away Kitty.” It features a blue background with a large pixelated cat held up by three balloons. In the background there are white clouds, a yellow sun, and an airplane flying across the X horizon. When the viewer presses the mouse down, a red heart will appear. It is a…
Assignment 1 _ Drawing Machine
TANAMAL_ASSIGNMENT_1 //Goodbyes under the same sky int SubjectX; void setup() { size (500,400); background (#92BED8); //sky is day time SubjectX = 50; } void draw() { { if (mousePressed) { background(#3C65A5); // Turning the sky to night } } stroke(20,80); fill(255,105); strokeWeight(0); ellipse(mouseX, mouseY, 5, 5); //Contrails and Stars //shapes //Object of the sky //Outermost…