Branding
Exhibition Branding
Benton Clouds Exhibition
An icon-driven identity to represent the ever-changing nature of clouds.
Student Work
BFA Senior Show
Pixels to Stitches: Materializing Digital Information
Student Work
Sheila Hicks Publication
Graphic Design II | Visual Systems
Student Work
Pairs
Pairs Riso Printed Publication
Won Gold at the 47th annual CADC Award Show
let x = 50;
let y = 200;
let xSpeed = 3;
let ySpeed = 2;
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
// Draw the circle
fill(0, 150, 255);
noStroke();
ellipse(x, y, 50, 50);
// Move the circle
x += xSpeed;
y += ySpeed;
// Bounce off the edges
if (x > width - 25 || x < 25) {
xSpeed *= -1;
}
if (y > height - 25 || y < 25) {
ySpeed *= -1;
}
}