Assignment 1 code and image

void setup() { size(600,600); stroke(0,133); smooth(); // background(120); } void draw() { strokeWeight(3); ellipse (mouseX,mouseY,70,70); rect(mouseX,mouseY,20,50); rect(mouseX,mouseY,50,20); rect(mouseX,mouseY,-20,-50); rect(mouseX,mouseY,-20,-40); rect(mouseX,mouseY,-50,50); rect(mouseX,mouseY,-40,40); rect(mouseX,mouseY,-30,30); noStroke(); ellipse (mouseX,mouseY,40,40); ellipse (mouseX,mouseY,30,30); ellipse (mouseX,mouseY,20,20); fill(mouseX,mouseY,47,150); if (mousePressed == true) for (int i=0; i<500; i=i+20) fill(random(255), random(255), random(255)); frameRate(30); }

Assignment 1: Rotating Color Eye Wheel by Dustin Drenk

float mouseDistance; int counter; float value; float mouseReleased; PImage Redeye; int i; void setup() { size(displayWidth, displayHeight); tint(random(151), random(-205), (frameCount + i*10) % 151, 100); background(44, 245, 123); Redeye = loadImage(“redeye_256x256.png”); smooth(10); } void draw() { if (counter > 15) { background(44, 245, 123); tint(random(255), random(255), (frameCount + i*20) % 255, 100); counter = 0;…

Broken Glass

  Broken Glass float mouseDistance; int counter; int x= 300; int y = 200; void setup () { size (550,200); background (255); } void draw () { counter++; println(counter); mouseDistance = dist(pmouseX, pmouseY, mouseX, mouseY); fill(#AAAAAA, 300); for (int i=100; i<width; i++) { line(0, i/.5, width, i/.5); } translate (width/2, height/2); rotate(counter); line(0, 0, mouseX,…

Drawing Machine: Dot Grid

Little drop of Lavender Here’s the code! //declare global variable, int+decimals others are whole numbers float x, y; float diameter;//allow int spacing; //integer import processing.pdf.*; boolean saveOneFrame = false; //if its false, it will do something. void setup() { size(720, 720); spacing= width/6; frameRate(3); } void draw() { //to save one frame as PDF if…

Blog 1- Lissette Garcia

The six principles of Slow Design can be applied to many aspects of life. Through revelation, expansion, reflection, engagement, participation, and evolution, we can not only design art/pieces, but live a more bountiful life. In “House X on Behance” designed by Matas Miliauskas, the house has a modern appearance on the inside and outside. One…

Slow Design by Daniel Mota

The piece Chronos XXI (2017) by Joachim Sauter depicts the God of Time, Chronos, in a time interactive piece.  A pendulum swings in front of a monitor which then creates the image of Chronos from Renaissance art; with each pass of the pendulum, a different portrayal of Chronos appears.  This piece exemplifies the slow design…

New Media Arts Blog 1 – Ivan Martinez

During the first day of class I thought I had a grasp of what new media arts was, but I looked deeper and found some interesting things. When looking through various pieces of art I had realized that my perception of the subject was different and I had to look deeper to understand it. I found…

Slow Design Principles

I choose Alvar Aalto’s first modernist chair design, mostly because he was a designer way ahead of his time. The Jacksons, stackable model 611 chairs, Alvar Aalto ca. 1930. This design encourages collaboration, better use of space, and fuels social interaction. When used it could be for a variety of purposes and isn’t limited to…

Slow Design Research

The principles of Slow Design can be applied in many facets of life, from artworks to large computer systems. The first project which displays some principles of Slow Design is the Philips Tea Maker (pictured above). This tea maker is a water kettle and tea pot in one. Once the water is done boiling, the…

FInal Project

This project was expansion of my interactive midterm project. I wanted to create a Arduino drawing robot machine controlled by bluetooth. The user can create patterns on the fly without the help of pre programmed patterns within the Arduino code. Materials: Bluetooth module HC06 etc Bluetooth control app :http://www.keuwl.com/apps/bluetoothelectronics/ 1k resistors  All the Materials Here:…

Final Project

9V Battery Cubs hat 6 jumpers Bluetooth Arduino Mac or iPhone with Bluetooth OLED board Soldering Iron This project was an expansion from my interactive project. So I made a couple of changes, instead of using and LCD display board I used an OLED display board to display the updates. So I got rid of…