132
edits
m (→Code) |
No edit summary |
||
Line 1: | Line 1: | ||
=The Moment= | =The Moment= | ||
==Concept== | === Concept === | ||
For the important day in the memory of life, wedding day probably is the most. It would be interesting to explore the different weddings in west and china in a commen space. People will find the difference in the attitude of wedding, the way of wedding and the traditionl things. | For the important day in the memory of life, wedding day probably is the most. It would be interesting to explore the different weddings in west and china in a commen space. People will find the difference in the attitude of wedding, the way of wedding and the traditionl things. | ||
Line 9: | Line 9: | ||
I have made two analyses of chinese and west wedding, about the time and flow: | I have made two analyses of chinese and west wedding, about the time and flow: | ||
[[File:wedding1.jpg| | [[File:wedding1.jpg|200px|]] | ||
[[File:wedding2.jpg| | [[File:wedding2.jpg|200px|]] | ||
===Videos=== | ===Videos=== | ||
The videos will be recorded from the different | The videos will be recorded from the different cities(first idea). I already have a wedding shooting of my cousin, who had a wonderful wedding on March 2010. Her wedding was a typical chinese modern wedding, not only had the traditional culture but also had west elements of wedding. | ||
I also want to shoot the west wedding video for the installation, recording the all the process and details. The video won’t be edited very special or romantic, just continued and documentary. The video is the most factually way to react the scenes. I’d like to ask the audience to control the time to react the moment they want. And experiencing two total different weddings in one space. | |||
Below is the example video from Thomas Grill, he did the shooting on August for the Pure Data Convention in Weimar. This video will be only for the test of the installation. | Below is the example video from Thomas Grill, he did the shooting on August for the Pure Data Convention in Weimar. This video will be only for the test of the installation. | ||
<videoflash type="vimeo">27718339|450|280</videoflash> | <videoflash type="vimeo">27718339|450|280</videoflash> | ||
[[File:wedding3.jpg|200px|]] | |||
===Clocks=== | ===Clocks=== | ||
Line 35: | Line 38: | ||
<syntaxhighlight lang="cpp"> | <syntaxhighlight lang="cpp"> | ||
void setup() { | void setup() { | ||
size(1000, 700); | |||
strokeWeight(3); | |||
smooth(); | |||
} | } | ||
void draw() { | void draw() { | ||
background(0); | |||
fill(174, 221, 60); | |||
ellipse(100, 580, 100, 100); | |||
ellipse(145, 580, 2, 2); | |||
ellipse(55, 580, 2, 2); | |||
ellipse(100, 535, 2, 2); | |||
ellipse(100, 625, 2, 2); | |||
ellipse(100, 580, 5, 5); | |||
float hourAngle = map(mouseX, 0, width, 0, 360); | |||
pushMatrix(); | |||
translate(100, 580); | |||
rotate(radians(hourAngle*12) - radians(90)); | |||
line(0, 0, 40, 0); | |||
float speed = dist(mouseX, mouseY, pmouseX, pmouseY); | |||
float diameter = speed * 2.0; | |||
fill(204, 221, 80); | |||
ellipse(50, 50, diameter/2, diameter/2); | |||
popMatrix(); | |||
translate(100, 580); | |||
rotate(radians(hourAngle) - radians(90)); | |||
line(0, 0, 20, 0); | |||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |
edits