baked pugtato
This is just a test.
[OLD FALL 2017] 15-104 • Introduction to Computing for Creative Practice
Professor Roger B. Dannenberg • Fall 2017 • Introduction to Computing for Creative Practice
baked pugtato
This is just a test.
One of my favorite installation art pieces is one by the name of “Having Fun/Good Life, Symptoms” by Bruce Nauman. The work is actually located in the Carnegie Museum of Art, and having grown up in Pittsburgh I have seen this particular display several times in the past couple of years. Each time I go to the CMOA, I’ve been drawn in by the flashing neon lights of this piece. The sign itself alternates sayings, so that not all words are illuminated at once, causing the visitor to stay and look for a while.. I never really thought about this piece deeply until this assignment, but given this assignment, I’ve come to realize the technological influence and pieces this work has, which, coincidentally, are reasons I admire this piece. The flashing lights of different sayings that go on and off at different times are what draws attention, and attached is a video that shows just that.
Hi, my name is not Bob or John. It’s Isadora.
function setup() {
//create canvas
createCanvas(600, 600);
background(200);
}
//draw is executed every frame 60 times per second
function draw() {
fill (255,255,255)
noStroke()
//if the mouse is on bottom
if(mouseY>300){
rect(300, 250, 55, 55);
}
else {
ellipse(300, 250, 55, 55);
}
}
Hi my name is Thomas
function setup() {
createCanvas(300, 300);
background(200, 200, 200);
noStroke();
fill(135);
ellipse(150, 150, 100, 70);
text("p5.js vers 0.5.12 test.", 10, 15);
}
function draw() {
}
Post
function setup() {
createCanvas(300, 300);
background(200, 100, 100);
text("p5.js vers 0.5.12 test.", 10, 15);
fill(200);
noStroke();
ellipse(150, 150, 100, 70);
text("This is adorable omg", 50, 50);
}
function draw() {
}
function setup() {
createCanvas(200, 200);
background(0,0,0);
}
function draw() {
noStroke();
fill(0,0,255);
ellipse(100,100,100,70);
}
function setup(){
createCanvas(300,300);
background(240);
}
function draw(){
var radius = 1/3*width;
fill("lightblue");
noStroke();
ellipse(width/2, height/2, radius, radius)
}
function setup() {
createCanvas(800, 500);
background(220,80,100);
text("p5.js vers 0.5.12 test.", 100, 50);
}
function draw() {
noStroke();
ellipse(300,200,400,200);
fill(150,200,200);
//fill("green")
}