Skip to content

Commit 0ac40ee

Browse files
committed
new render queue
1 parent 0e85209 commit 0ac40ee

File tree

2 files changed

+29
-26
lines changed

2 files changed

+29
-26
lines changed

notes.txt

+2-8
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,6 @@ Dumped ideas:
88
2do:
99
Use animation instead of 3D scatter (z axis > time axis)
1010

11-
lock in and animate a 3-cell-point
12-
animate micro party
13-
animate green_island 5
14-
animate periodicity
15-
16-
better PC > take a better look at 2D_T
17-
1811
Processing: canon
1912

2013
Deviations from reality:
@@ -27,6 +20,7 @@ Deviations from reality:
2720

2821
Discussion:
2922
What does a three-cell-point correspond to?
30-
Ring climbs hill rail analogy
23+
standing on edge: Ring climbs hump rail analogy
3124
Set resolution = 0, got forever.mat
3225
What causes the sin ripple?
26+
Show 2D_scatter_T/tiny_island/41

renderQueue.m

+27-18
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,62 @@
11
initProgram();
22
loadDice();
3-
x = .01978; y = .018265;
3+
x = 1.65; y = 3.9;
44
initDiceFromXY();
5-
VIDEO_DIR = 'video/MicroParty_all_color/b';%
5+
VIDEO_DIR = 'video/red_sea/right';%
66
mkdir(VIDEO_DIR);
7-
VIDEO_PATH = [VIDEO_DIR '/' 'b_%d.png']
7+
VIDEO_PATH = [VIDEO_DIR '/' 'right_%d.png']
88
rollAndSaveVideo();
99

1010
initProgram();
1111
loadDice();
12-
x = .01981; y = .0182;
12+
x = 1.5; y = 4;
1313
initDiceFromXY();
14-
VIDEO_DIR = 'video/MicroParty_all_color/k';%
14+
VIDEO_DIR = 'video/red_sea/mid';%
1515
mkdir(VIDEO_DIR);
16-
VIDEO_PATH = [VIDEO_DIR '/' 'k_%d.png']
16+
VIDEO_PATH = [VIDEO_DIR '/' 'mid_%d.png']
1717
rollAndSaveVideo();
1818

1919
initProgram();
2020
loadDice();
21-
x = .01979; y = .01823;
21+
x = 1.2; y = 4.4;
2222
initDiceFromXY();
23-
VIDEO_DIR = 'video/MicroParty_all_color/y';%
23+
VIDEO_DIR = 'video/red_sea/left';%
2424
mkdir(VIDEO_DIR);
25-
VIDEO_PATH = [VIDEO_DIR '/' 'y_%d.png']
25+
VIDEO_PATH = [VIDEO_DIR '/' 'left_%d.png']
2626
rollAndSaveVideo();
2727

2828
initProgram();
2929
loadDice();
30-
x = .01979; y = .01827;
30+
x = 0; y = 0;
3131
initDiceFromXY();
32-
VIDEO_DIR = 'video/MicroParty_all_color/v';%
32+
VIDEO_DIR = 'video/zoom_out/x0y0';%
3333
mkdir(VIDEO_DIR);
34-
VIDEO_PATH = [VIDEO_DIR '/' 'v_%d.png']
34+
VIDEO_PATH = [VIDEO_DIR '/' 'x0y0_%d.png']
3535
rollAndSaveVideo();
3636

3737
initProgram();
3838
loadDice();
39-
x = .01978; y = .018237;
39+
x = 1; y = 0;
4040
initDiceFromXY();
41-
VIDEO_DIR = 'video/MicroParty_all_color/r';%
41+
VIDEO_DIR = 'video/zoom_out/x1y0';%
4242
mkdir(VIDEO_DIR);
43-
VIDEO_PATH = [VIDEO_DIR '/' 'r_%d.png']
43+
VIDEO_PATH = [VIDEO_DIR '/' 'x1y0_%d.png']
4444
rollAndSaveVideo();
4545

4646
initProgram();
4747
loadDice();
48-
x = .01981; y = .018265;
48+
x = 0; y = 1;
4949
initDiceFromXY();
50-
VIDEO_DIR = 'video/MicroParty_all_color/g';%
50+
VIDEO_DIR = 'video/zoom_out/x0y1';%
5151
mkdir(VIDEO_DIR);
52-
VIDEO_PATH = [VIDEO_DIR '/' 'g_%d.png']
52+
VIDEO_PATH = [VIDEO_DIR '/' 'x0y1_%d.png']
53+
rollAndSaveVideo();
54+
55+
initProgram();
56+
loadDice();
57+
x = 1; y = 1;
58+
initDiceFromXY();
59+
VIDEO_DIR = 'video/zoom_out/x1y1';%
60+
mkdir(VIDEO_DIR);
61+
VIDEO_PATH = [VIDEO_DIR '/' 'x1y1_%d.png']
5362
rollAndSaveVideo();

0 commit comments

Comments
 (0)