Tuesday, October 28, 2008

Shirt

I went through a few revisions and this is the final shirt. The idea would be that someone wearing the shirt would make a conscious effort to notice something new every time they wore the shirt. The tag reads "Everytime I wear this shirt I will notice something new" and this fits in with the theme of my project. Being aware. I would hope that if people were to actually get and wear these shirts, they would start to notice things and eventually make it a daily practice, one that doesn't require the shirt.


Business Cards




Well here are a few ideas for business cards (front and back of card in same image). The two above are finals.



Monday, October 27, 2008

AWARE

Got the application running!

Monday, October 13, 2008

logos

Did some logo sketching, came up with a final to be scanned in. And then scanned it in and created the final logo. Pretty exciting. This is starting to come together, and I really like the idea behind the logo.





Color scheme

This is the final color scheme:


Picking a color scheme was hard for this. I wasn't sure where to take it. I struggled for quite a while until I stumbled across the perfect one on kuler. Here are a few images I was looking at for ideas.



Thursday, September 25, 2008

learning processing pt2

And now I've written this one on my own using the first sketch to jog my memory when I forgot exactly what to do:

void setup() {
size (400,400);
smooth();
}

void draw() {
//background (0);
for (int i=0; i < 100; i++) {
int xPos = int(random(-width, width));
int yPos = int(random(-height, height));
int diam = int(random(30));
color col = color(random(255), random(255), random(255));
drawCircle (xPos, yPos, diam, col);
}
}

void drawCircle(int xPos, int yPos, int diam, color col) {
fill(col);
noStroke();
ellipse(xPos, yPos, diam, diam);
}

learning processing pt1

So Derek and I had a little learning session last night. He's attempting to teach me how to code in processing. It's starting to make better sense to me now, and we wrote a program last night that helped me a ton.

Here is what we did:
void setup() {
size(400,400); //WINDOW SIZE
smooth();
}

void draw() {
background(0); //BG COLOR
translate(width/2, height/2); //CENTERS SCREEN

for(int i=0; i < 10; i++) {
int xPos = int(random(-width, width));
int yPos = int(random(-height, height));

drawCircle(xPos, yPos, 50, color(50, 0, 100));
}
}

void drawCircle(int xPos, int yPos, int diam, color col) {
fill(col);
noStroke();
ellipse(xPos, yPos, diam, diam);
}

It turned out well and got me to understand how processing works as a language. I'm happy with what we did last night and I look forward to more learning... apparently he created a folder for me on his desktop: "Zac Lessons" haha. Thanks dude.