tracksperanto 2.7.0 → 2.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/History.txt CHANGED
@@ -1,3 +1,9 @@
1
+ === 2.8.0 / 2011-10-11
2
+
3
+ * Add a special exporter for Flame cornerpins. Apparently the bilinear staiblizer wants the trackers to have the right names
4
+ right from the start (top_left, top_right and so on)
5
+ * Check trackers sent through to ensure that they always come sequentially without violating the frame ordering
6
+
1
7
  === 2.7.0 / 2011-13-10
2
8
 
3
9
  * Speedup Shake script parsing by using a buffering reader
data/Manifest.txt CHANGED
@@ -12,6 +12,7 @@ lib/export/boujou.rb
12
12
  lib/export/equalizer3.rb
13
13
  lib/export/equalizer4.rb
14
14
  lib/export/flame_stabilizer.rb
15
+ lib/export/flame_stabilizer_cornerpin.rb
15
16
  lib/export/match_mover.rb
16
17
  lib/export/maya_live.rb
17
18
  lib/export/mux.rb
@@ -79,10 +80,12 @@ test/export/samples/ref_boujou.txt
79
80
  test/export/samples/ref_equalizer.txt
80
81
  test/export/samples/ref_equalizer3.txt
81
82
  test/export/samples/ref_flame.stabilizer
83
+ test/export/samples/ref_flameCornerpin.stabilizer
82
84
  test/export/samples/ref_matchmover.rz2
83
85
  test/export/test_boujou_export.rb
84
86
  test/export/test_equalizer3_export.rb
85
87
  test/export/test_equalizer_export.rb
88
+ test/export/test_flame_stabilizer_cornerpin_export.rb
86
89
  test/export/test_flame_stabilizer_export.rb
87
90
  test/export/test_match_mover_export.rb
88
91
  test/export/test_maya_live_export.rb
@@ -98,6 +101,8 @@ test/import/samples/3de_v3/3de_export_v3.txt
98
101
  test/import/samples/3de_v4/3de_export_cube.txt
99
102
  test/import/samples/boujou_features_text/boujou_txt_export.txt
100
103
  test/import/samples/flame_stabilizer/Flame_Stabilizer_2012.stabilizer
104
+ test/import/samples/flame_stabilizer/cornerpin_2012.stabilizer
105
+ test/import/samples/flame_stabilizer/flame2010_cornerpin.stabilizer
101
106
  test/import/samples/flame_stabilizer/flame_2012_another.stabilizer
102
107
  test/import/samples/flame_stabilizer/fromCombustion_fromMidClip_wSnap.stabilizer
103
108
  test/import/samples/flame_stabilizer/fromTracksperanto.stabilizer
data/Rakefile CHANGED
@@ -13,7 +13,7 @@ begin
13
13
  p.extra_deps = {
14
14
  "obuf" => "~> 1.0",
15
15
  "progressive_io" => "~> 1.0",
16
- "flame_channel_parser" => "2.2.1",
16
+ "flame_channel_parser" => "~> 3.0",
17
17
  "progressbar" => "~> 0.9",
18
18
  "update_hints" => "~> 1.0"
19
19
  }
@@ -0,0 +1,36 @@
1
+ # Exports setups with tracker naming that works with the Action bilinears
2
+ class Tracksperanto::Export::FlameStabilizerCornerpin < Tracksperanto::Export::FlameStabilizer
3
+
4
+ CORNERPIN_NAMING = %w( none top_left top_right bottom_left bottom_right )
5
+
6
+ def self.desc_and_extension
7
+ "flame_cornerpin.stabilizer"
8
+ end
9
+
10
+ def self.human_name
11
+ "Flame/Smoke 2D Stabilizer setup for bilinear corner pins"
12
+ end
13
+
14
+ def prefix(tracker_channel)
15
+ tracker_name = CORNERPIN_NAMING[@counter] || ("tracker%d" % @counter)
16
+ [tracker_name, tracker_channel].join("/")
17
+ end
18
+
19
+ def start_tracker_segment(tracker_name)
20
+ if (@counter == 4)
21
+ @skip = true
22
+ else
23
+ super
24
+ end
25
+ end
26
+
27
+ def export_point(frame, abs_float_x, abs_float_y, float_residual)
28
+ return if @skip
29
+ super
30
+ end
31
+
32
+ def end_tracker_segment
33
+ return if @skip
34
+ super
35
+ end
36
+ end
@@ -63,9 +63,15 @@ class Tracksperanto::Import::FlameStabilizer < Tracksperanto::Import::Base
63
63
  def extract_channels_from_stream(io)
64
64
  parser = StabilizerParser.new
65
65
  parser.logger_proc = method(:report_progress)
66
- channels = parser.parse(io)
67
66
 
68
- [channels, channels.map{|c| c.path }]
67
+ channels = Obuf.new
68
+ names = []
69
+ parser.parse(io) do | channel |
70
+ channels.push(channel)
71
+ names.push(channel.path)
72
+ end
73
+
74
+ [channels, names]
69
75
  end
70
76
 
71
77
  def scavenge_trackers_from_channels(channels, names)
@@ -6,6 +6,16 @@ class Tracksperanto::Middleware::Lint < Tracksperanto::Middleware::Base
6
6
  end
7
7
  end
8
8
 
9
+ class NonSequentialKeyframes < RuntimeError
10
+ def initialize(args)
11
+ @name, @last_frame, @current_frame = args
12
+ end
13
+
14
+ def message
15
+ "A keyframe for #{@name} has been sent that comes before the previous keyframe (#{@current_frame} should NOT come after #{@last_frame})."
16
+ end
17
+ end
18
+
9
19
  class EmptyTrackerSentError < RuntimeError
10
20
  def initialize(name)
11
21
  @name = name
@@ -39,11 +49,14 @@ class Tracksperanto::Middleware::Lint < Tracksperanto::Middleware::Base
39
49
  @in_tracker = true
40
50
  @last_tracker_name = name
41
51
  @keyframes = 0
52
+ @last_frame = 0
42
53
  super
43
54
  end
44
55
 
45
- def export_point(*a)
56
+ def export_point(frame, abs_float_x, abs_float_y, float_residual)
46
57
  @keyframes += 1
58
+ raise NonSequentialKeyframes, [@last_tracker_name, @last_frame, frame] if @last_frame > frame
59
+ @last_frame = frame
47
60
  super
48
61
  end
49
62
 
data/lib/tracksperanto.rb CHANGED
@@ -7,7 +7,7 @@ require "progressive_io"
7
7
 
8
8
  module Tracksperanto
9
9
  PATH = File.expand_path(File.dirname(__FILE__))
10
- VERSION = '2.7.0'
10
+ VERSION = '2.8.0'
11
11
 
12
12
  module Import; end
13
13
  module Export; end
@@ -0,0 +1,962 @@
1
+ StabilizerFileVersion 5.0
2
+ CreationDate Thu Feb 18 17:22:12 2010
3
+
4
+
5
+ NbTrackers 3
6
+ Selected 0
7
+ FrameWidth 1920
8
+ FrameHeight 1080
9
+ AutoKey yes
10
+ MotionPath yes
11
+ Icons yes
12
+ AutoPan no
13
+ EditMode 0
14
+ Format 0
15
+ Padding
16
+ Red 0
17
+ Green 100
18
+ Blue 0
19
+ Oversampling no
20
+ Opacity 50
21
+ Zoom 3
22
+ Field no
23
+ Backward no
24
+ Anim
25
+ Channel top_left/track/x
26
+ Extrapolation constant
27
+ Value 960
28
+ Colour 50 50 50
29
+ End
30
+ Channel top_left/track/y
31
+ Extrapolation constant
32
+ Value 540
33
+ Colour 50 50 50
34
+ End
35
+ Channel top_left/track/width
36
+ Extrapolation linear
37
+ Value 15
38
+ Colour 50 50 50
39
+ End
40
+ Channel top_left/track/height
41
+ Extrapolation linear
42
+ Value 15
43
+ Colour 50 50 50
44
+ End
45
+ Channel top_left/ref/width
46
+ Extrapolation linear
47
+ Value 10
48
+ Colour 50 50 50
49
+ End
50
+ Channel top_left/ref/height
51
+ Extrapolation linear
52
+ Value 10
53
+ Colour 50 50 50
54
+ End
55
+ Channel top_left/ref/x
56
+ Extrapolation constant
57
+ Value 0.000
58
+ Colour 50 50 50
59
+ KeyVersion 1
60
+ Size 1
61
+ Key 0
62
+ Frame 1
63
+ Value 0.000
64
+ Interpolation constant
65
+ LeftSlope 2.400
66
+ RightSlope 2.400
67
+ End
68
+ End
69
+ Channel top_left/ref/y
70
+ Extrapolation constant
71
+ Value 1080.000
72
+ Colour 50 50 50
73
+ KeyVersion 1
74
+ Size 1
75
+ Key 0
76
+ Frame 1
77
+ Value 1080.000
78
+ Interpolation constant
79
+ LeftSlope 2.400
80
+ RightSlope 2.400
81
+ End
82
+ End
83
+ Channel top_left/ref/dx
84
+ Extrapolation constant
85
+ Value 0
86
+ Colour 50 50 50
87
+ Size 2
88
+ KeyVersion 1
89
+ Key 0
90
+ Frame 0
91
+ Value 0
92
+ ValueLock yes
93
+ DeleteLock yes
94
+ Interpolation constant
95
+ End
96
+ Key 1
97
+ Frame 1
98
+ Value 0
99
+ ValueLock yes
100
+ DeleteLock yes
101
+ Interpolation constant
102
+ End
103
+ End
104
+ Channel top_left/ref/dy
105
+ Extrapolation constant
106
+ Value 0
107
+ Colour 50 50 50
108
+ Size 2
109
+ KeyVersion 1
110
+ Key 0
111
+ Frame 0
112
+ Value 0
113
+ ValueLock yes
114
+ DeleteLock yes
115
+ Interpolation constant
116
+ End
117
+ Key 1
118
+ Frame 1
119
+ Value 0
120
+ ValueLock yes
121
+ DeleteLock yes
122
+ Interpolation constant
123
+ End
124
+ End
125
+ Channel top_left/shift/x
126
+ Extrapolation constant
127
+ Value 0
128
+ KeyVersion 1
129
+ Size 19
130
+ Key 0
131
+ Frame 1
132
+ Value 0
133
+ Interpolation linear
134
+ LeftSlope 2.400
135
+ RightSlope 2.400
136
+ End
137
+ Key 1
138
+ Frame 2
139
+ Value -96.000
140
+ Interpolation linear
141
+ LeftSlope 2.400
142
+ RightSlope 2.400
143
+ End
144
+ Key 2
145
+ Frame 3
146
+ Value -192.000
147
+ Interpolation linear
148
+ LeftSlope 2.400
149
+ RightSlope 2.400
150
+ End
151
+ Key 3
152
+ Frame 4
153
+ Value -288.000
154
+ Interpolation linear
155
+ LeftSlope 2.400
156
+ RightSlope 2.400
157
+ End
158
+ Key 4
159
+ Frame 5
160
+ Value -384.000
161
+ Interpolation linear
162
+ LeftSlope 2.400
163
+ RightSlope 2.400
164
+ End
165
+ Key 5
166
+ Frame 6
167
+ Value -480.000
168
+ Interpolation linear
169
+ LeftSlope 2.400
170
+ RightSlope 2.400
171
+ End
172
+ Key 6
173
+ Frame 7
174
+ Value -576.000
175
+ Interpolation linear
176
+ LeftSlope 2.400
177
+ RightSlope 2.400
178
+ End
179
+ Key 7
180
+ Frame 8
181
+ Value -672.000
182
+ Interpolation linear
183
+ LeftSlope 2.400
184
+ RightSlope 2.400
185
+ End
186
+ Key 8
187
+ Frame 9
188
+ Value -768.000
189
+ Interpolation linear
190
+ LeftSlope 2.400
191
+ RightSlope 2.400
192
+ End
193
+ Key 9
194
+ Frame 10
195
+ Value -864.000
196
+ Interpolation linear
197
+ LeftSlope 2.400
198
+ RightSlope 2.400
199
+ End
200
+ Key 10
201
+ Frame 13
202
+ Value -1152.000
203
+ Interpolation linear
204
+ LeftSlope 2.400
205
+ RightSlope 2.400
206
+ End
207
+ Key 11
208
+ Frame 14
209
+ Value -1248.000
210
+ Interpolation linear
211
+ LeftSlope 2.400
212
+ RightSlope 2.400
213
+ End
214
+ Key 12
215
+ Frame 15
216
+ Value -1344.000
217
+ Interpolation linear
218
+ LeftSlope 2.400
219
+ RightSlope 2.400
220
+ End
221
+ Key 13
222
+ Frame 16
223
+ Value -1440.000
224
+ Interpolation linear
225
+ LeftSlope 2.400
226
+ RightSlope 2.400
227
+ End
228
+ Key 14
229
+ Frame 17
230
+ Value -1536.000
231
+ Interpolation linear
232
+ LeftSlope 2.400
233
+ RightSlope 2.400
234
+ End
235
+ Key 15
236
+ Frame 18
237
+ Value -1632.000
238
+ Interpolation linear
239
+ LeftSlope 2.400
240
+ RightSlope 2.400
241
+ End
242
+ Key 16
243
+ Frame 19
244
+ Value -1728.000
245
+ Interpolation linear
246
+ LeftSlope 2.400
247
+ RightSlope 2.400
248
+ End
249
+ Key 17
250
+ Frame 20
251
+ Value -1824.000
252
+ Interpolation linear
253
+ LeftSlope 2.400
254
+ RightSlope 2.400
255
+ End
256
+ Key 18
257
+ Frame 21
258
+ Value -1920.000
259
+ Interpolation linear
260
+ LeftSlope 2.400
261
+ RightSlope 2.400
262
+ End
263
+ End
264
+ Channel top_left/shift/y
265
+ Extrapolation constant
266
+ Value 0
267
+ KeyVersion 1
268
+ Size 19
269
+ Key 0
270
+ Frame 1
271
+ Value 0
272
+ Interpolation linear
273
+ LeftSlope 2.400
274
+ RightSlope 2.400
275
+ End
276
+ Key 1
277
+ Frame 2
278
+ Value 205.200
279
+ Interpolation linear
280
+ LeftSlope 2.400
281
+ RightSlope 2.400
282
+ End
283
+ Key 2
284
+ Frame 3
285
+ Value 388.800
286
+ Interpolation linear
287
+ LeftSlope 2.400
288
+ RightSlope 2.400
289
+ End
290
+ Key 3
291
+ Frame 4
292
+ Value 550.800
293
+ Interpolation linear
294
+ LeftSlope 2.400
295
+ RightSlope 2.400
296
+ End
297
+ Key 4
298
+ Frame 5
299
+ Value 691.200
300
+ Interpolation linear
301
+ LeftSlope 2.400
302
+ RightSlope 2.400
303
+ End
304
+ Key 5
305
+ Frame 6
306
+ Value 810.000
307
+ Interpolation linear
308
+ LeftSlope 2.400
309
+ RightSlope 2.400
310
+ End
311
+ Key 6
312
+ Frame 7
313
+ Value 907.200
314
+ Interpolation linear
315
+ LeftSlope 2.400
316
+ RightSlope 2.400
317
+ End
318
+ Key 7
319
+ Frame 8
320
+ Value 982.800
321
+ Interpolation linear
322
+ LeftSlope 2.400
323
+ RightSlope 2.400
324
+ End
325
+ Key 8
326
+ Frame 9
327
+ Value 1036.800
328
+ Interpolation linear
329
+ LeftSlope 2.400
330
+ RightSlope 2.400
331
+ End
332
+ Key 9
333
+ Frame 10
334
+ Value 1069.200
335
+ Interpolation linear
336
+ LeftSlope 2.400
337
+ RightSlope 2.400
338
+ End
339
+ Key 10
340
+ Frame 13
341
+ Value 1036.800
342
+ Interpolation linear
343
+ LeftSlope 2.400
344
+ RightSlope 2.400
345
+ End
346
+ Key 11
347
+ Frame 14
348
+ Value 982.800
349
+ Interpolation linear
350
+ LeftSlope 2.400
351
+ RightSlope 2.400
352
+ End
353
+ Key 12
354
+ Frame 15
355
+ Value 907.200
356
+ Interpolation linear
357
+ LeftSlope 2.400
358
+ RightSlope 2.400
359
+ End
360
+ Key 13
361
+ Frame 16
362
+ Value 810.000
363
+ Interpolation linear
364
+ LeftSlope 2.400
365
+ RightSlope 2.400
366
+ End
367
+ Key 14
368
+ Frame 17
369
+ Value 691.200
370
+ Interpolation linear
371
+ LeftSlope 2.400
372
+ RightSlope 2.400
373
+ End
374
+ Key 15
375
+ Frame 18
376
+ Value 550.800
377
+ Interpolation linear
378
+ LeftSlope 2.400
379
+ RightSlope 2.400
380
+ End
381
+ Key 16
382
+ Frame 19
383
+ Value 388.800
384
+ Interpolation linear
385
+ LeftSlope 2.400
386
+ RightSlope 2.400
387
+ End
388
+ Key 17
389
+ Frame 20
390
+ Value 205.200
391
+ Interpolation linear
392
+ LeftSlope 2.400
393
+ RightSlope 2.400
394
+ End
395
+ Key 18
396
+ Frame 21
397
+ Value 0.000
398
+ Interpolation linear
399
+ LeftSlope 2.400
400
+ RightSlope 2.400
401
+ End
402
+ End
403
+ Channel top_left/offset/x
404
+ Extrapolation constant
405
+ Value 0
406
+ End
407
+ Channel top_left/offset/y
408
+ Extrapolation constant
409
+ Value 0
410
+ End
411
+ Channel top_right/track/x
412
+ Extrapolation constant
413
+ Value 960
414
+ Colour 50 50 50
415
+ End
416
+ Channel top_right/track/y
417
+ Extrapolation constant
418
+ Value 540
419
+ Colour 50 50 50
420
+ End
421
+ Channel top_right/track/width
422
+ Extrapolation linear
423
+ Value 15
424
+ Colour 50 50 50
425
+ End
426
+ Channel top_right/track/height
427
+ Extrapolation linear
428
+ Value 15
429
+ Colour 50 50 50
430
+ End
431
+ Channel top_right/ref/width
432
+ Extrapolation linear
433
+ Value 10
434
+ Colour 50 50 50
435
+ End
436
+ Channel top_right/ref/height
437
+ Extrapolation linear
438
+ Value 10
439
+ Colour 50 50 50
440
+ End
441
+ Channel top_right/ref/x
442
+ Extrapolation constant
443
+ Value 1920.000
444
+ Colour 50 50 50
445
+ KeyVersion 1
446
+ Size 1
447
+ Key 0
448
+ Frame 1
449
+ Value 1920.000
450
+ Interpolation constant
451
+ LeftSlope 2.400
452
+ RightSlope 2.400
453
+ End
454
+ End
455
+ Channel top_right/ref/y
456
+ Extrapolation constant
457
+ Value 0.000
458
+ Colour 50 50 50
459
+ KeyVersion 1
460
+ Size 1
461
+ Key 0
462
+ Frame 1
463
+ Value 0.000
464
+ Interpolation constant
465
+ LeftSlope 2.400
466
+ RightSlope 2.400
467
+ End
468
+ End
469
+ Channel top_right/ref/dx
470
+ Extrapolation constant
471
+ Value 0
472
+ Colour 50 50 50
473
+ Size 2
474
+ KeyVersion 1
475
+ Key 0
476
+ Frame 0
477
+ Value 0
478
+ ValueLock yes
479
+ DeleteLock yes
480
+ Interpolation constant
481
+ End
482
+ Key 1
483
+ Frame 1
484
+ Value 0
485
+ ValueLock yes
486
+ DeleteLock yes
487
+ Interpolation constant
488
+ End
489
+ End
490
+ Channel top_right/ref/dy
491
+ Extrapolation constant
492
+ Value 0
493
+ Colour 50 50 50
494
+ Size 2
495
+ KeyVersion 1
496
+ Key 0
497
+ Frame 0
498
+ Value 0
499
+ ValueLock yes
500
+ DeleteLock yes
501
+ Interpolation constant
502
+ End
503
+ Key 1
504
+ Frame 1
505
+ Value 0
506
+ ValueLock yes
507
+ DeleteLock yes
508
+ Interpolation constant
509
+ End
510
+ End
511
+ Channel top_right/shift/x
512
+ Extrapolation constant
513
+ Value 0
514
+ KeyVersion 1
515
+ Size 19
516
+ Key 0
517
+ Frame 1
518
+ Value 0
519
+ Interpolation linear
520
+ LeftSlope 2.400
521
+ RightSlope 2.400
522
+ End
523
+ Key 1
524
+ Frame 2
525
+ Value 96.000
526
+ Interpolation linear
527
+ LeftSlope 2.400
528
+ RightSlope 2.400
529
+ End
530
+ Key 2
531
+ Frame 3
532
+ Value 192.000
533
+ Interpolation linear
534
+ LeftSlope 2.400
535
+ RightSlope 2.400
536
+ End
537
+ Key 3
538
+ Frame 4
539
+ Value 288.000
540
+ Interpolation linear
541
+ LeftSlope 2.400
542
+ RightSlope 2.400
543
+ End
544
+ Key 4
545
+ Frame 5
546
+ Value 384.000
547
+ Interpolation linear
548
+ LeftSlope 2.400
549
+ RightSlope 2.400
550
+ End
551
+ Key 5
552
+ Frame 6
553
+ Value 480.000
554
+ Interpolation linear
555
+ LeftSlope 2.400
556
+ RightSlope 2.400
557
+ End
558
+ Key 6
559
+ Frame 7
560
+ Value 576.000
561
+ Interpolation linear
562
+ LeftSlope 2.400
563
+ RightSlope 2.400
564
+ End
565
+ Key 7
566
+ Frame 8
567
+ Value 672.000
568
+ Interpolation linear
569
+ LeftSlope 2.400
570
+ RightSlope 2.400
571
+ End
572
+ Key 8
573
+ Frame 9
574
+ Value 768.000
575
+ Interpolation linear
576
+ LeftSlope 2.400
577
+ RightSlope 2.400
578
+ End
579
+ Key 9
580
+ Frame 10
581
+ Value 864.000
582
+ Interpolation linear
583
+ LeftSlope 2.400
584
+ RightSlope 2.400
585
+ End
586
+ Key 10
587
+ Frame 13
588
+ Value 1152.000
589
+ Interpolation linear
590
+ LeftSlope 2.400
591
+ RightSlope 2.400
592
+ End
593
+ Key 11
594
+ Frame 14
595
+ Value 1248.000
596
+ Interpolation linear
597
+ LeftSlope 2.400
598
+ RightSlope 2.400
599
+ End
600
+ Key 12
601
+ Frame 15
602
+ Value 1344.000
603
+ Interpolation linear
604
+ LeftSlope 2.400
605
+ RightSlope 2.400
606
+ End
607
+ Key 13
608
+ Frame 16
609
+ Value 1440.000
610
+ Interpolation linear
611
+ LeftSlope 2.400
612
+ RightSlope 2.400
613
+ End
614
+ Key 14
615
+ Frame 17
616
+ Value 1536.000
617
+ Interpolation linear
618
+ LeftSlope 2.400
619
+ RightSlope 2.400
620
+ End
621
+ Key 15
622
+ Frame 18
623
+ Value 1632.000
624
+ Interpolation linear
625
+ LeftSlope 2.400
626
+ RightSlope 2.400
627
+ End
628
+ Key 16
629
+ Frame 19
630
+ Value 1728.000
631
+ Interpolation linear
632
+ LeftSlope 2.400
633
+ RightSlope 2.400
634
+ End
635
+ Key 17
636
+ Frame 20
637
+ Value 1824.000
638
+ Interpolation linear
639
+ LeftSlope 2.400
640
+ RightSlope 2.400
641
+ End
642
+ Key 18
643
+ Frame 21
644
+ Value 1920.000
645
+ Interpolation linear
646
+ LeftSlope 2.400
647
+ RightSlope 2.400
648
+ End
649
+ End
650
+ Channel top_right/shift/y
651
+ Extrapolation constant
652
+ Value 0
653
+ KeyVersion 1
654
+ Size 19
655
+ Key 0
656
+ Frame 1
657
+ Value 0
658
+ Interpolation linear
659
+ LeftSlope 2.400
660
+ RightSlope 2.400
661
+ End
662
+ Key 1
663
+ Frame 2
664
+ Value -205.200
665
+ Interpolation linear
666
+ LeftSlope 2.400
667
+ RightSlope 2.400
668
+ End
669
+ Key 2
670
+ Frame 3
671
+ Value -388.800
672
+ Interpolation linear
673
+ LeftSlope 2.400
674
+ RightSlope 2.400
675
+ End
676
+ Key 3
677
+ Frame 4
678
+ Value -550.800
679
+ Interpolation linear
680
+ LeftSlope 2.400
681
+ RightSlope 2.400
682
+ End
683
+ Key 4
684
+ Frame 5
685
+ Value -691.200
686
+ Interpolation linear
687
+ LeftSlope 2.400
688
+ RightSlope 2.400
689
+ End
690
+ Key 5
691
+ Frame 6
692
+ Value -810.000
693
+ Interpolation linear
694
+ LeftSlope 2.400
695
+ RightSlope 2.400
696
+ End
697
+ Key 6
698
+ Frame 7
699
+ Value -907.200
700
+ Interpolation linear
701
+ LeftSlope 2.400
702
+ RightSlope 2.400
703
+ End
704
+ Key 7
705
+ Frame 8
706
+ Value -982.800
707
+ Interpolation linear
708
+ LeftSlope 2.400
709
+ RightSlope 2.400
710
+ End
711
+ Key 8
712
+ Frame 9
713
+ Value -1036.800
714
+ Interpolation linear
715
+ LeftSlope 2.400
716
+ RightSlope 2.400
717
+ End
718
+ Key 9
719
+ Frame 10
720
+ Value -1069.200
721
+ Interpolation linear
722
+ LeftSlope 2.400
723
+ RightSlope 2.400
724
+ End
725
+ Key 10
726
+ Frame 13
727
+ Value -1036.800
728
+ Interpolation linear
729
+ LeftSlope 2.400
730
+ RightSlope 2.400
731
+ End
732
+ Key 11
733
+ Frame 14
734
+ Value -982.800
735
+ Interpolation linear
736
+ LeftSlope 2.400
737
+ RightSlope 2.400
738
+ End
739
+ Key 12
740
+ Frame 15
741
+ Value -907.200
742
+ Interpolation linear
743
+ LeftSlope 2.400
744
+ RightSlope 2.400
745
+ End
746
+ Key 13
747
+ Frame 16
748
+ Value -810.000
749
+ Interpolation linear
750
+ LeftSlope 2.400
751
+ RightSlope 2.400
752
+ End
753
+ Key 14
754
+ Frame 17
755
+ Value -691.200
756
+ Interpolation linear
757
+ LeftSlope 2.400
758
+ RightSlope 2.400
759
+ End
760
+ Key 15
761
+ Frame 18
762
+ Value -550.800
763
+ Interpolation linear
764
+ LeftSlope 2.400
765
+ RightSlope 2.400
766
+ End
767
+ Key 16
768
+ Frame 19
769
+ Value -388.800
770
+ Interpolation linear
771
+ LeftSlope 2.400
772
+ RightSlope 2.400
773
+ End
774
+ Key 17
775
+ Frame 20
776
+ Value -205.200
777
+ Interpolation linear
778
+ LeftSlope 2.400
779
+ RightSlope 2.400
780
+ End
781
+ Key 18
782
+ Frame 21
783
+ Value 0.000
784
+ Interpolation linear
785
+ LeftSlope 2.400
786
+ RightSlope 2.400
787
+ End
788
+ End
789
+ Channel top_right/offset/x
790
+ Extrapolation constant
791
+ Value 0
792
+ End
793
+ Channel top_right/offset/y
794
+ Extrapolation constant
795
+ Value 0
796
+ End
797
+ Channel bottom_left/track/x
798
+ Extrapolation constant
799
+ Value 960
800
+ Colour 50 50 50
801
+ End
802
+ Channel bottom_left/track/y
803
+ Extrapolation constant
804
+ Value 540
805
+ Colour 50 50 50
806
+ End
807
+ Channel bottom_left/track/width
808
+ Extrapolation linear
809
+ Value 15
810
+ Colour 50 50 50
811
+ End
812
+ Channel bottom_left/track/height
813
+ Extrapolation linear
814
+ Value 15
815
+ Colour 50 50 50
816
+ End
817
+ Channel bottom_left/ref/width
818
+ Extrapolation linear
819
+ Value 10
820
+ Colour 50 50 50
821
+ End
822
+ Channel bottom_left/ref/height
823
+ Extrapolation linear
824
+ Value 10
825
+ Colour 50 50 50
826
+ End
827
+ Channel bottom_left/ref/x
828
+ Extrapolation constant
829
+ Value 970.000
830
+ Colour 50 50 50
831
+ KeyVersion 1
832
+ Size 1
833
+ Key 0
834
+ Frame 1
835
+ Value 970.000
836
+ Interpolation constant
837
+ LeftSlope 2.400
838
+ RightSlope 2.400
839
+ End
840
+ End
841
+ Channel bottom_left/ref/y
842
+ Extrapolation constant
843
+ Value 550.000
844
+ Colour 50 50 50
845
+ KeyVersion 1
846
+ Size 1
847
+ Key 0
848
+ Frame 1
849
+ Value 550.000
850
+ Interpolation constant
851
+ LeftSlope 2.400
852
+ RightSlope 2.400
853
+ End
854
+ End
855
+ Channel bottom_left/ref/dx
856
+ Extrapolation constant
857
+ Value 0
858
+ Colour 50 50 50
859
+ Size 2
860
+ KeyVersion 1
861
+ Key 0
862
+ Frame 0
863
+ Value 0
864
+ ValueLock yes
865
+ DeleteLock yes
866
+ Interpolation constant
867
+ End
868
+ Key 1
869
+ Frame 1
870
+ Value 0
871
+ ValueLock yes
872
+ DeleteLock yes
873
+ Interpolation constant
874
+ End
875
+ End
876
+ Channel bottom_left/ref/dy
877
+ Extrapolation constant
878
+ Value 0
879
+ Colour 50 50 50
880
+ Size 2
881
+ KeyVersion 1
882
+ Key 0
883
+ Frame 0
884
+ Value 0
885
+ ValueLock yes
886
+ DeleteLock yes
887
+ Interpolation constant
888
+ End
889
+ Key 1
890
+ Frame 1
891
+ Value 0
892
+ ValueLock yes
893
+ DeleteLock yes
894
+ Interpolation constant
895
+ End
896
+ End
897
+ Channel bottom_left/shift/x
898
+ Extrapolation constant
899
+ Value 0
900
+ KeyVersion 1
901
+ Size 1
902
+ Key 0
903
+ Frame 1
904
+ Value 0
905
+ Interpolation linear
906
+ LeftSlope 2.400
907
+ RightSlope 2.400
908
+ End
909
+ End
910
+ Channel bottom_left/shift/y
911
+ Extrapolation constant
912
+ Value 0
913
+ KeyVersion 1
914
+ Size 1
915
+ Key 0
916
+ Frame 1
917
+ Value 0
918
+ Interpolation linear
919
+ LeftSlope 2.400
920
+ RightSlope 2.400
921
+ End
922
+ End
923
+ Channel bottom_left/offset/x
924
+ Extrapolation constant
925
+ Value 0
926
+ End
927
+ Channel bottom_left/offset/y
928
+ Extrapolation constant
929
+ Value 0
930
+ End
931
+ ChannelEnd
932
+ Tracker 0
933
+ Active yes
934
+ Colour
935
+ Red 0
936
+ Green 100
937
+ Blue 0
938
+ FixedRef yes
939
+ FixedX no
940
+ FixedY no
941
+ Tolerance 100
942
+ Tracker 1
943
+ Active yes
944
+ Colour
945
+ Red 0
946
+ Green 100
947
+ Blue 0
948
+ FixedRef yes
949
+ FixedX no
950
+ FixedY no
951
+ Tolerance 100
952
+ Tracker 2
953
+ Active yes
954
+ Colour
955
+ Red 0
956
+ Green 100
957
+ Blue 0
958
+ FixedRef yes
959
+ FixedX no
960
+ FixedY no
961
+ Tolerance 100
962
+ End