We had our first meeting on Friday. We watched the kickoff video, which you can find on the links section of this page. We looked at the last year’s robot, (pictures of which you can find on the about section of this page. We had a good discussion about gracious professionalism.
The team experimented a bit with Processing. We started with an example program, and after some editing and experimenting, this is what we had at the end of the meeting:
void setup() {
size(500, 500);
background(random(255),random(255),random(255));
}
void draw() {
stroke(random(255),(255),(255),67);
if (mousePressed == true) {
line(mouseX + random(100), mouseY + random(100), pmouseX + random(100), pmouseY + random(100));
}
}
Links to download Processing and to processing tutorials are at the links section as well.
I am looking forward to see everybody on Wednesday at 3:30 in the library again.