Making a movie from following code
in
Programming Questions
•
8 months ago
Dear forum this has been asked before. I have tried to read other enquires in forum and worked with my books about processing where this is explained. Still i just cant crack it so hopefully if someone has the time i would appreciate help very much. Im totally newbee with coding but find it extremely interesting and like pure magic :)
I like one of the examples patches/sketches so much i want to make a movie with it and experiment further in final cut and max/msp/jitter.
The code is this one; What is the easiest way to make this a movie or many tiffs i can put together later. I just cant crack it :( Thanks. Julian
float x = 33;
float numFrames = 50;
public void setup() {
size(800, 600, P2D);
fill(0);
}
public void draw() {
background(255);
for (int i = 0; i < 10000; i++) {
float x = random(width);
float y = random(height);
text("HELLO", x, y);
}
if (frameCount % 10 == 0) println(frameRate);
}
1