tracksperanto 1.5.2 → 1.5.3

Sign up to get free protection for your applications and to get access to all the features.
data/History.txt CHANGED
@@ -1,3 +1,7 @@
1
+ === 1.5.3 / 2009-10-17
2
+
3
+ * Fix a bug in the Nuke importer for tracks that have no animation
4
+
1
5
  === 1.5.2 / 2009-10-09
2
6
 
3
7
  * Fix Windows-specific issue (Tempfile-related) in the Equalizer4 exporter
data/Manifest.txt CHANGED
@@ -86,6 +86,7 @@ test/import/samples/kipPointsMatchmover.rz2
86
86
  test/import/samples/mayalive_kipShot.txt
87
87
  test/import/samples/megaTrack.action.3dtrack.stabilizer
88
88
  test/import/samples/one_shake_tracker.txt
89
+ test/import/samples/018.nk
89
90
  test/import/samples/one_shake_tracker_from_first.txt
90
91
  test/import/samples/one_tracker_with_break.nk
91
92
  test/import/samples/one_tracker_with_break_in_grp.nk
data/bin/tracksperanto CHANGED
@@ -30,8 +30,11 @@ readers = Tracksperanto.importer_names
30
30
 
31
31
  parser = OptionParser.new do | p |
32
32
  p.banner = "Usage: tracksperanto -f ShakeScript -w 1920 -h 1080 /Films/Blockbuster/Shots/001/script.shk"
33
+ p.on("--code PATH_TO_SCRIPT", String, "Load custom Ruby code into tracksperanto") {|c|
34
+ require c
35
+ }
33
36
  p.on(" -f", "--from TRANSLATOR", String,
34
- "Use the specific import translator (will try to autodetect, but can be #{readers.join(', ')})") do | f |
37
+ "Use the specific import translator (will try to autodetect, but can be #{Tracksperanto.importer_names.join(', ')})") do | f |
35
38
  begin
36
39
  reader_klass = Tracksperanto::Import.const_get(f)
37
40
  rescue NameError => e
@@ -38,6 +38,12 @@ class Tracksperanto::Export::Equalizer4 < Tracksperanto::Export::Base
38
38
  @internal_io.rewind
39
39
  @io.puts(@num_of_trackers)
40
40
  @io.puts(@internal_io.read)
41
+ discard_io
41
42
  end
42
43
 
44
+ private
45
+ def discard_io
46
+ @internal_io.close
47
+ @internal_io = nil
48
+ end
43
49
  end
data/lib/export/mux.rb CHANGED
@@ -1,4 +1,5 @@
1
- # Multiplexor. Does not inherit Base so that it does not get used as a translator
1
+ # Multiplexor. Accepts a number of exporters and replays
2
+ # the calls to all of them in succession.
2
3
  class Tracksperanto::Export::Mux
3
4
  attr_accessor :outputs
4
5
 
@@ -32,13 +32,8 @@ class Tracksperanto::Import::NukeScript < Tracksperanto::Import::Base
32
32
  tracks_in_tracker = []
33
33
  while line = io.gets_and_strip
34
34
  if line =~ TRACK_PATTERN
35
- tuples = scan_track(line)
36
- tk = Tracksperanto::Tracker.new(
37
- :keyframes => tuples.map do | (f, x, y) |
38
- Tracksperanto::Keyframe.new(:frame => f -1, :abs_x => x, :abs_y => y)
39
- end
40
- )
41
- tracks_in_tracker.push(tk)
35
+ t = extract_tracker(line)
36
+ tracks_in_tracker.push(t) if t
42
37
  elsif line =~ NODENAME
43
38
  tracks_in_tracker.each_with_index do | t, i |
44
39
  t.name = "#{$1}_track#{i+1}"
@@ -51,13 +46,14 @@ class Tracksperanto::Import::NukeScript < Tracksperanto::Import::Base
51
46
 
52
47
  def scan_track(line_with_curve)
53
48
  x_curve, y_curve = line_with_curve.split(/\}/).map{ | one_curve| parse_curve(one_curve) }
49
+ return nil unless (x_curve && y_curve)
54
50
  zip_curve_tuples(x_curve, y_curve)
55
51
  end
56
52
 
57
53
  # Scan a curve to a number of triplets
58
54
  def parse_curve(curve_text)
59
55
  # Replace the closing curly brace with a curly brace with space so that it gets caught by split
60
- atoms, tuples = curve_text.gsub(/\}/, ' }').split, []
56
+ atoms, tuples = curve_text.gsub(/\}/m, ' }').split, []
61
57
  # Nuke saves curves very efficiently. x(keyframe_number) means that an uninterrupted sequence of values will start,
62
58
  # after which values follow. When the curve is interrupted in some way a new x(keyframe_number) will signifu that we
63
59
  # skip to that specified keyframe and the curve continues from there
@@ -78,4 +74,14 @@ class Tracksperanto::Import::NukeScript < Tracksperanto::Import::Base
78
74
  tuples
79
75
  end
80
76
 
77
+ def extract_tracker(line)
78
+ tuples = scan_track(line)
79
+ return nil unless (tuples && tuples.any?)
80
+
81
+ Tracksperanto::Tracker.new(
82
+ :keyframes => tuples.map do | (f, x, y) |
83
+ Tracksperanto::Keyframe.new(:frame => f -1, :abs_x => x, :abs_y => y)
84
+ end
85
+ )
86
+ end
81
87
  end
data/lib/tracksperanto.rb CHANGED
@@ -4,7 +4,7 @@ require 'tempfile'
4
4
 
5
5
  module Tracksperanto
6
6
  PATH = File.expand_path(File.dirname(__FILE__))
7
- VERSION = '1.5.2'
7
+ VERSION = '1.5.3'
8
8
 
9
9
  module Import; end
10
10
  module Export; end
@@ -0,0 +1,300 @@
1
+ #! /Applications/Nuke5.2v1/Nuke5.2v1.app/Contents/MacOS/Nuke5.2v1 -nx
2
+ version 5.2100
3
+ define_window_layout_xml {<?xml version="1.0" encoding="UTF-8"?>
4
+ <layout version="1.0">
5
+ <window x="0" y="22" w="1920" h="1174" screen="0">
6
+ <splitter orientation="1">
7
+ <split size="1214"></split>
8
+ <splitter orientation="1">
9
+ <split size="46"></split>
10
+ <dock id="" hideTitles="1" activePageId="Toolbar.1">
11
+ <page id="Toolbar.1"></page>
12
+ </dock>
13
+ <split size="1164"></split>
14
+ <splitter orientation="2">
15
+ <split size="771"></split>
16
+ <dock id="" activePageId="Viewer.1">
17
+ <page id="Viewer.1"></page>
18
+ </dock>
19
+ <split size="377"></split>
20
+ <dock id="" activePageId="DAG.1">
21
+ <page id="DAG.1"></page>
22
+ <page id="Curve Editor.1"></page>
23
+ </dock>
24
+ </splitter>
25
+ </splitter>
26
+ <split size="702"></split>
27
+ <dock id="" activePageId="Properties.1">
28
+ <page id="Properties.1"></page>
29
+ </dock>
30
+ </splitter>
31
+ </window>
32
+ </layout>
33
+ }
34
+ Root {
35
+ inputs 0
36
+ name /Users/julik/Desktop/VFX_Projectery/Herocomplex/Nuke/018.nk
37
+ last_frame 72
38
+ lock_range true
39
+ format "2048 1556 0 0 2048 1556 1 2K_Super_35(full-ap)"
40
+ proxy_type scale
41
+ proxy_format "1024 778 0 0 1024 778 1 1K_Super_35(full-ap)"
42
+ }
43
+ Read {
44
+ inputs 0
45
+ file /Volumes/HEROCOMPLEX/Herocomplex_DPX_folderPerClip/014/HERO_TAPE_5-1_MOV.%04d.dpx
46
+ format "1920 1080 0 0 1920 1080 1.33307 "
47
+ last 72
48
+ timecode 05:25:59:19
49
+ name Read1
50
+ selected true
51
+ xpos -229
52
+ ypos -159
53
+ }
54
+ Tracker3 {
55
+ track1 {{curve i x-1 688 687.9998169 687.9998169 688.7861938 690.0551758 691.6063843 692.6219482 692.5110474 691.8043213 691.8075562 692.6072998 693.3892822 693.6298218 693.3630371 693.4295654 694.1118774 695.2762451 696.4356689 697.2547607 697.9540405 697.9902344 697.0113525 696.8886108 697.4362183 697.991394 699.1144409 700.7189941 701.2935181 700.644043 699.9485474 700.121521 701.4262085 702.5859985 702.6068115 701.8759766 701.7851562 702.6334229 703.579834 703.6171265 702.7838135 702.638916 703.899231 705.2442627 705.0753174 704.8689575 704.8068848 704.7904053 705.3375854 705.802124 706.1369019 706.8500977 707.0510254 707.3670654 707.178894 707.4893799 707.7304688 707.4700928 707.8219604 709.163269 709.7229614 709.6715698 710.0803833 710.3500977 710.6311035 711.5828857 712.3613281 713.067627 713.5343628 713.3280029 712.5640869 712.4660645 712.8282471 712.6126709 712.9567261} {curve i x-1 704 704 704 703.6535034 703.4769897 703.328064 702.6992188 701.5753174 700.401062 699.6913452 699.4695435 699.312439 699.0268555 698.7654419 699.1115112 699.7821655 701.1067505 701.6489258 701.8981323 703.1323853 702.9265137 702.5557861 702.2003174 700.7764282 700.9550781 701.2772827 700.2313232 699.19104 698.1933594 696.7752686 696.5310669 696.2956543 696.8375244 697.3131104 696.6191406 695.5750122 695.1976929 695.5335083 694.6061401 695.1589966 695.4734497 693.0671387 692.9928589 694.6522827 693.663147 691.0853882 690.5839233 691.2264404 689.7011719 688.6524658 690.1990356 688.2686157 686.7362061 688.7051392 687.8102417 685.367981 683.946167 684.4519653 685.3108521 683.5439453 681.8991089 680.281311 679.3668213 678.7703857 677.2878418 676.0905151 675.9320068 676.3411255 675.522644 673.3848267 671.2838135 670.8167725 671.0317993 670.2186279}}
56
+ offset1 {0 0}
57
+ pattern1 {-24 -28 24 28}
58
+ search1 {-18 -22 18 22}
59
+ enable2 true
60
+ track2 {{curve i x-1 1430 1430.000244 1430.000122 1430.69873 1431.898193 1433.33606 1434.155273 1433.758179 1432.762085 1432.620483 1433.397461 1434.137207 1434.265747 1433.820068 1433.718872 1434.22168 1435.132202 1435.920532 1436.214722 1436.384521 1435.668579 1433.807495 1433.026367 1432.917725 1432.986572 1433.756104 1434.917969 1434.963135 1433.713013 1432.389893 1431.932617 1432.615723 1433.145142 1432.360596 1430.715332 1429.752075 1429.873291 1430.145386 1429.332275 1427.669922 1426.728271 1427.130981 1427.652222 1426.571045 1425.398682 1424.271606 1423.361816 1423.118164 1422.64856 1422.162231 1422.256592 1421.442261 1420.808594 1419.790649 1419.122437 1418.228638 1416.866211 1416.382446 1416.963745 1416.513916 1415.506226 1414.989746 1414.36731 1413.800415 1413.8927 1413.860718 1413.767578 1413.452271 1412.298462 1410.468018 1409.387329 1408.857788 1407.738037 1407.193726} {curve i x-1 680 679.9992676 680.0003662 680.0316162 680.2799072 680.2348633 679.6137695 678.4142456 677.6159668 677.2744141 677.0283203 676.7123413 676.7805786 677.0906982 677.5631714 678.6818237 680.1479492 680.5958252 681.0782471 682.3227539 681.6784058 680.6571045 681.0623779 679.8776855 679.5548706 680.6748047 679.4609985 677.7706299 677.5211182 677.0192261 676.8479614 677.0878906 677.104187 677.5126343 677.5067139 677.0808105 676.9408569 676.890625 675.7559814 675.8989868 676.718811 675.6573486 675.2495117 675.4466553 674.9745483 672.946106 672.7136841 673.418457 671.3419189 670.0496826 672.8666992 670.8633423 668.8496704 670.517334 670.1465454 668.2103271 666.4085083 666.612854 667.1852417 665.3375244 663.7838745 662.258728 660.6104736 660.045105 658.6958008 657.671936 657.5581665 657.5722656 656.7269287 654.6629639 652.8146362 651.6777344 651.3588257 651.4576416}}
61
+ offset2 {0 0}
62
+ pattern2 {-30 -39.9922 30 39.9922}
63
+ search2 {-21 -27.9945 21 27.9945}
64
+ enable3 true
65
+ track3 {{curve i x1 1016 1016.697327 1017.867065 1019.257751 1020.136108 1019.895325 1019.098877 1019.030029 1019.754944 1020.498596 1020.66864 1020.329407 1020.313232 1020.862183 1021.80658 1022.755432 1023.272034 1023.693481 1023.411987 1022.123901 1021.69574 1021.934326 1022.244507 1023.119934 1024.467896 1024.768066 1023.880859 1022.950012 1022.843506 1023.763428 1024.605469 1024.258789 1023.170166 1022.672974 1023.165405 1023.759644 1023.420166 1022.289856 1021.791077 1022.600098 1023.480469 1022.963928 1022.343994 1021.772766 1021.374023 1021.533142 1021.595215 1021.549133} {curve i x1 696 695.8427124 695.854126 695.7172241 695.1673584 693.9806519 692.935791 692.3944702 692.1956177 691.9572144 691.8253174 691.8219604 692.1735229 693.0924072 694.4748535 694.9929199 695.3181763 696.593811 696.163269 695.5192261 695.5062256 694.1408691 694.0869751 694.7620239 693.637085 692.322998 691.6052856 690.5872803 690.3952637 690.3623657 690.6950684 691.1165771 690.7185669 689.9330444 689.6345215 689.8305664 688.7703247 689.1670532 689.6924438 687.8816528 687.6162109 688.6605835 687.9077759 685.5377197 685.1439819 685.8297119 684.0751953 682.8711548}}
66
+ offset3 {0 0}
67
+ pattern3 {-30 -39.9922 30 39.9922}
68
+ search3 {-21 -27.9945 21 27.9945}
69
+ enable4 true
70
+ track4 {{curve i x1 268 269.0655518 270.7266235 272.7477112 274.1706543 274.1920776 273.3938599 273.4976807 274.5612793 275.6193542 275.9639893 275.7484131 275.9472656 276.9401855 278.5367432 280.2202759 281.4909058 282.6483765 283.0957031 282.2869263 282.5341187 283.6356812 284.5745239 286.1391907 288.4193726 289.4112854 288.9214172 288.4969177 289.0809631 290.9833984 292.7436829 293.2192993 292.7994995 293.1965027 294.6949463} {curve i x1 716 715.5107422 715.0748291 714.7823486 714.194458 713.1792603 711.7874756 710.8795776 710.6251221 710.56073 710.0820923 709.534668 709.7635498 710.1729736 711.3098755 711.9700928 711.9584351 713.1507568 713.2178955 713.2634888 712.5024414 710.9680176 711.4116211 711.2625122 710.25354 709.6091919 708.1969604 706.2675781 706.024292 705.5708008 706.3601074 706.8393555 705.7932129 704.4656372 703.8582764}}
71
+ offset4 {0 0}
72
+ pattern4 {-30 -39.9922 30 39.9922}
73
+ search4 {-21 -27.9945 21 27.9945}
74
+ translate {{curve i x-1 0.0001831412374 0 0 0.7863627076 2.055348396 3.606554747 4.622118473 4.511226654 3.804484606 3.807735205 4.607467175 5.389434814 5.629990578 5.363199711 5.429725647 6.112064362 7.276430607 8.435852051 9.254951477 9.954230309 9.990400314 9.011510849 8.888760567 9.436398506 9.991544724 11.11461258 12.71915913 13.29367352 12.64420891 11.94872952 12.12170696 13.42635918 14.58614635 14.60697937 13.87615395 13.78531551 14.63358021 15.58000851 15.6172781 14.78398514 14.63907433 15.89940643 17.24444199 17.07549477 16.86914062 16.80705452 16.79057121 17.33775139 17.80228996 18.13707161 18.85026932 19.05117607 19.36723137 19.17905426 19.48957062 19.73063087 19.47024918 19.82210922 21.16343498 21.72311592 21.67174339 22.08056068 22.35028267 22.63126755 23.58305168 24.36149406 25.06777763 25.53451347 25.32815933 24.56427765 24.46624947 24.82841301 24.61285591 24.95688629} {curve i x-1 0 0 0 -0.346496582 -0.5230102539 -0.6719360352 -1.30078125 -2.424682617 -3.598937988 -4.308654785 -4.530456543 -4.687561035 -4.973144531 -5.234558105 -4.88848877 -4.217834473 -2.893249512 -2.351074219 -2.101867676 -0.8676147461 -1.073486328 -1.444213867 -1.799682617 -3.223571777 -3.044921875 -2.722717285 -3.768676758 -4.808959961 -5.806640625 -7.224731445 -7.468933105 -7.704345703 -7.162475586 -6.686889648 -7.380859375 -8.424987793 -8.802307129 -8.466491699 -9.393859863 -8.841003418 -8.526550293 -10.93286133 -11.00714111 -9.347717285 -10.33685303 -12.91461182 -13.41607666 -12.77355957 -14.29882812 -15.34753418 -13.80096436 -15.73138428 -17.26379395 -15.29486084 -16.1897583 -18.63201904 -20.05383301 -19.54803467 -18.68914795 -20.45605469 -22.10089111 -23.71868896 -24.63317871 -25.22961426 -26.7121582 -27.90948486 -28.06799316 -27.65887451 -28.47735596 -30.61517334 -32.71618652 -33.18322754 -32.96820068 -33.78137207}}
75
+ center {{curve i x-1 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169 687.9998169} {curve i x-1 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704 704}}
76
+ name Tracker1
77
+ xpos -229
78
+ ypos -73
79
+ }
80
+ Tracker3 {
81
+ track1 {{curve i x1 42 43.8693924 46.8238678 50.41523743 53.39400101 54.05889511 53.36351395 53.83358383 55.67458725 57.57520676 58.39395523 58.24311066 58.9065094 60.99647141 64.28562927 67.9464035 71.27794647 74.50061035 77.38876343 78.34740448 80.338974 83.56825256 86.29875183 89.53923798 94.32899475 97.36923218 97.6268158 98.4332428 100.6576691 105.1306686 109.5348358 112.1492157 113.4610596 115.6836395 119.483757 123.4978027 126.3063736 127.3697281 129.3562317 134.2183533 139.367218 141.8186646 144.3670044 147.1170807 149.3616333 152.6043701 156.5309753 159.5323792 162.3288574 165.5829315 168.9529877 170.9213562 174.2512665 177.6371307 180.191864 183.2051086 187.659729 191.4893341 193.9858704 197.1348114 200.0008698 202.5661621 206.2792053 209.6251831 213.0841675 216.1130676 218.1940918 219.4585266 221.8879547 224.7550201 226.7636871 229.2944336} {curve i x1 980 978.612793 977.4697266 976.3314819 974.6620483 972.6224976 970.5429688 968.8977051 968.2648926 967.8067627 966.7214966 965.708252 965.3345947 965.0087891 965.2855225 964.5023193 963.0643311 962.7512207 960.9026489 959.1454468 956.4865723 952.7719727 952.1507568 950.6777954 947.9212646 945.7789307 942.6634521 938.6911011 936.9609985 934.5552979 933.7088623 932.461853 929.168335 925.4384766 922.7553101 921.6638794 918.9142456 918.4841309 916.6789551 910.234375 908.3043823 909.5756226 905.9234009 900.2548218 897.5558472 896.7168579 893.2830811 890.4985962 889.8409424 885.6086426 882.2288818 883.1816406 879.7862549 874.3521729 870.7758789 870.1134644 869.4911499 865.4448242 861.7581787 858.24646 856.0540771 853.6096802 850.2514648 847.0324707 845.4754028 844.647583 842.3569946 838.0183716 833.5043335 832.012207 830.906311 827.7824707}}
82
+ offset1 {0 0}
83
+ pattern1 {-18 -24 18 24}
84
+ search1 {-21 -27.9945 21 27.9945}
85
+ track2 {1055 413}
86
+ offset2 {0 0}
87
+ pattern2 {-30 -39.9922 30 39.9922}
88
+ search2 {-21 -27.9945 21 27.9945}
89
+ track3 {1055 667}
90
+ offset3 {0 0}
91
+ pattern3 {-30 -39.9922 30 39.9922}
92
+ search3 {-21 -27.9945 21 27.9945}
93
+ track4 {865 667}
94
+ offset4 {0 0}
95
+ pattern4 {-30 -39.9922 30 39.9922}
96
+ search4 {-21 -27.9945 21 27.9945}
97
+ translate {{curve i x1 0 1.869391322 4.823865891 8.415234566 11.39399815 12.05889225 11.36351013 11.83358288 13.67458725 15.5752039 16.39395332 16.24310875 16.9065094 18.99647141 22.28563118 25.9464016 29.27794647 32.50060654 35.38876343 36.34740448 38.338974 41.56825256 44.29874802 47.53923798 52.32899094 55.36922836 55.6268158 56.43324661 58.65766525 63.13067245 67.53482819 70.1492157 71.46105957 73.68363953 77.48376465 81.49780273 84.30638123 85.36973572 87.35623169 92.21835327 97.36722565 99.81866455 102.3670044 105.1170883 107.3616333 110.6043777 114.530983 117.5323792 120.3288574 123.5829315 126.9529953 128.9213562 132.2512665 135.6371307 138.191864 141.2051086 145.659729 149.4893341 151.9858856 155.1348114 158.000885 160.5661621 164.2792206 167.6251831 171.0841675 174.1130829 176.1940918 177.4585419 179.8879547 182.7550354 184.7636719 187.2944336} {curve i x1 0 -1.387207031 -2.530273438 -3.668518066 -5.33795166 -7.377502441 -9.45703125 -11.10229492 -11.73510742 -12.1932373 -13.27850342 -14.29174805 -14.66540527 -14.99121094 -14.71447754 -15.49768066 -16.93566895 -17.2487793 -19.09735107 -20.85455322 -23.51342773 -27.22802734 -27.84924316 -29.32220459 -32.07873535 -34.22106934 -37.33654785 -41.30889893 -43.03900146 -45.44470215 -46.2911377 -47.53814697 -50.83166504 -54.56152344 -57.24468994 -58.33612061 -61.08575439 -61.51586914 -63.32104492 -69.765625 -71.69561768 -70.42437744 -74.07659912 -79.74517822 -82.44415283 -83.28314209 -86.71691895 -89.50140381 -90.15905762 -94.39135742 -97.77111816 -96.81835938 -100.2137451 -105.6478271 -109.2241211 -109.8865356 -110.5088501 -114.5551758 -118.2418213 -121.75354 -123.9459229 -126.3903198 -129.7485352 -132.9675293 -134.5245972 -135.352417 -137.6430054 -141.9816284 -146.4956665 -147.987793 -149.093689 -152.2175293}}
98
+ center {{curve i x1 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42 42} {curve i x1 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980 980}}
99
+ name Tracker2
100
+ xpos -229
101
+ ypos -47
102
+ }
103
+ Tracker3 {
104
+ track1 {{curve i x54 1773.800049 1769.109619 1766.130737 1764.705688 1761.579834 1757.553223 1754.37207 1751.099243 1748.027222 1745.849731 1743.547485 1741.455078 1739.150024 1735.268799 1730.035278 1726.130249 1723.344604 1719.756104 1716.567627} {curve i x54 1054 1048.749268 1046.894775 1045.748169 1040.894775 1036.750732 1032.678223 1028.397949 1025.555176 1022.114746 1018.94104 1016.982117 1015.144775 1011.811829 1006.933167 1002.270203 998.5925293 996.1482544 994.5820312}}
105
+ offset1 {0 0}
106
+ pattern1 {-13.8 -17 13.8 17}
107
+ search1 {-21 -27.9945 21 27.9945}
108
+ track2 {1055 413}
109
+ offset2 {0 0}
110
+ pattern2 {-30 -39.9922 30 39.9922}
111
+ search2 {-21 -27.9945 21 27.9945}
112
+ track3 {1055 667}
113
+ offset3 {0 0}
114
+ pattern3 {-30 -39.9922 30 39.9922}
115
+ search3 {-21 -27.9945 21 27.9945}
116
+ track4 {865 667}
117
+ offset4 {0 0}
118
+ pattern4 {-30 -39.9922 30 39.9922}
119
+ search4 {-21 -27.9945 21 27.9945}
120
+ translate {{curve i x54 0 -4.690430164 -7.669222832 -9.094244957 -12.22009945 -16.24682617 -19.42798996 -22.70072365 -25.77273369 -27.95028305 -30.25255203 -32.34494019 -34.64995575 -38.53126907 -43.76471329 -47.66983414 -50.45541 -54.04388046 -57.23236847} {curve i x54 0 -5.250732422 -7.105224609 -8.251831055 -13.10522461 -17.24926758 -21.32177734 -25.60205078 -28.44482422 -31.88525391 -35.05895996 -37.0178833 -38.85522461 -42.18817139 -47.0668335 -51.72979736 -55.4074707 -57.85174561 -59.41796875}}
121
+ center {{curve i x54 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049 1773.800049} {curve i x54 1054 1054 1054 1054 1054 1054 1054 1054 1054 1054 1054 1054 1054 1054 1054 1054 1054 1054 1054}}
122
+ name Tracker3
123
+ xpos -229
124
+ ypos -21
125
+ }
126
+ Tracker3 {
127
+ track1 {{curve i x6 1444.551758 1442.532104 1442.233398 1443.053101 1443.87207 1443.656372 1442.623535 1442.031494 1441.956909 1442.405273 1442.599487 1441.891479 1441.185791 1439.319824 1436.121338 1433.69104 1432.422241 1431.90271 1431.961304 1432.708618 1432.138184 1429.397827 1426.404175 1424.782349 1424.465576 1424.251221 1422.120117 1418.490234 1415.80249 1414.706055 1414.177856 1412.129028 1409.230103 1406.639893 1405.165039 1404.676514 1402.849365 1400 1396.959473 1394.563843 1393.220337 1391.687378 1390.069214 1388.747681 1386.577515 1384.791992 1382.704956 1380.434082 1377.796631 1375.196289 1373.7146 1373.506226 1371.883301 1369.60376 1367.911865 1366.413696 1364.784546 1363.878052 1362.848755 1361.933594 1360.868774 1358.646362 1355.468628 1353.168701 1351.804443 1349.746216 1347.868286} {curve i x6 1066.304321 1066.08252 1065.666382 1065.207153 1064.654053 1064.407471 1064.257935 1064.230713 1064.806885 1065.794922 1065.158813 1064.233643 1064.3302 1061.588623 1058.355469 1057.010498 1053.807007 1052.301025 1052.56604 1049.981323 1046.670898 1044.754028 1042.424683 1040.603271 1039.166748 1037.592163 1036.171387 1033.91687 1031.207642 1029.204346 1027.48584 1024.210571 1022.651672 1021.631042 1017.887146 1015.386108 1013.931641 1011 1006.146118 1003.824341 1002.9151 998.4115601 995.1237793 996.7867432 992.1233521 987.8485107 988.0753784 985.3566284 980.517334 976.1860352 974.6989136 973.74646 969.4713135 965.7092285 962.0298462 958.442688 956.0345459 952.7310791 949.7940063 948.0778198 946.6019287 943.8138428 939.340332 935.1446533 932.2955933 930.2966309 928.6366577}}
128
+ offset1 {0 0}
129
+ pattern1 {-12 -13 12 13}
130
+ search1 {-21 -27.9945 21 27.9945}
131
+ track2 {1055 413}
132
+ offset2 {0 0}
133
+ pattern2 {-30 -39.9922 30 39.9922}
134
+ search2 {-21 -27.9945 21 27.9945}
135
+ track3 {1055 667}
136
+ offset3 {0 0}
137
+ pattern3 {-30 -39.9922 30 39.9922}
138
+ search3 {-21 -27.9945 21 27.9945}
139
+ track4 {865 667}
140
+ offset4 {0 0}
141
+ pattern4 {-30 -39.9922 30 39.9922}
142
+ search4 {-21 -27.9945 21 27.9945}
143
+ translate {{curve i x6 0 -2.019590139 -2.318293333 -1.498644829 -0.6796371341 -0.8953775167 -1.92820251 -2.52020669 -2.594836712 -2.146415234 -1.952194095 -2.660218 -3.365952969 -5.231887341 -8.430357933 -10.86064148 -12.12944412 -12.64901638 -12.59041119 -11.84310341 -12.41349602 -15.15393066 -18.1475563 -19.76936531 -20.08610725 -20.30047417 -22.43159676 -26.06145668 -28.74923706 -29.84570312 -30.37388229 -32.42268372 -35.32162857 -37.91179276 -39.38672256 -39.87516022 -41.70235825 -44.55176163 -47.59227371 -49.987854 -51.33137512 -52.86436081 -54.4825058 -55.80405045 -57.97418213 -59.75971985 -61.84679794 -64.11766052 -66.75507355 -69.35540771 -70.83711243 -71.0455246 -72.66842651 -74.94799042 -76.6398468 -78.13803101 -79.76716614 -80.67362213 -81.70297241 -82.61812592 -83.6829071 -85.90532684 -89.08310699 -91.38299561 -92.74729919 -94.80553436 -96.68346405} {curve i x6 0 -0.2218017578 -0.6379394531 -1.097167969 -1.650268555 -1.896850586 -2.046386719 -2.073608398 -1.497436523 -0.5093994141 -1.145507812 -2.070678711 -1.974121094 -4.715698242 -7.948852539 -9.293823242 -12.49731445 -14.0032959 -13.73828125 -16.32299805 -19.63342285 -21.55029297 -23.87963867 -25.7010498 -27.13757324 -28.7121582 -30.13293457 -32.38745117 -35.09667969 -37.09997559 -38.81848145 -42.09375 -43.65264893 -44.67327881 -48.41717529 -50.91821289 -52.37268066 -55.30432129 -60.15820312 -62.47998047 -63.38922119 -67.89276123 -71.18054199 -69.51757812 -74.18096924 -78.45581055 -78.22894287 -80.94769287 -85.7869873 -90.11828613 -91.60540771 -92.55786133 -96.83300781 -100.5950928 -104.2744751 -107.8616333 -110.2697754 -113.5732422 -116.5103149 -118.2265015 -119.7023926 -122.4904785 -126.9639893 -131.159668 -134.008728 -136.0076904 -137.6676636}}
144
+ center {{curve i x6 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758 1444.551758} {curve i x6 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321 1066.304321}}
145
+ name Tracker4
146
+ xpos -229
147
+ ypos 5
148
+ }
149
+ Tracker3 {
150
+ track1 {{curve i x44 419.3912354 419.3939514 422.0266724 424.4659424 426.1813049 427.6481628 429.5723267 431.686615 432.5948181 434.3969116 436.3100891 437.6442261 439.4825745 442.6146545 444.9754944 446.301239 448.1731567 450.0779724 451.637207 454.0812988 456.3417358 458.4374084 460.4171448 461.4454956 461.9000549 463.1817932 465.077301 466.0918884 467.4252625} {curve i x44 1045.113525 1045.080811 1044.630615 1040.53186 1037.391357 1036.874268 1032.042847 1028.128174 1028.571899 1024.852173 1019.013184 1015.012512 1013.719482 1012.674744 1008.204224 1004.187439 1000.098389 997.1533203 994.4569702 990.6819458 987.2536011 985.2053833 983.9718018 981.1405029 976.3840332 971.7163696 969.390625 967.9264526 964.7969971}}
151
+ offset1 {0 0}
152
+ pattern1 {-30 -34 30 34}
153
+ search1 {-21 -27.9945 21 27.9945}
154
+ enable2 true
155
+ track2 {{curve i x43 1217.992676 1215.755493 1214.001099 1213.285645 1212.423096 1211.369141 1210.474976 1209.051514 1207.943359 1206.418579 1204.825928 1203.066895 1201.194824 1200.306885 1200.616577 1199.656006 1198.104126 1197.021118 1196.127686 1195.128906 1194.738525 1194.311768 1193.845459 1193.357422 1191.710205 1189.319214 1187.635254 1186.853394 1185.422974 1184.09082} {curve i x43 1027.517578 1022.393677 1020.064209 1019.024414 1014.519714 1011.251282 1012.482849 1007.806213 1003.585083 1003.848022 1000.892822 995.769043 991.5185547 990.1134033 989.1469116 984.815918 980.8842773 977.1810303 973.6833496 971.2305908 967.8378906 964.7661743 962.9866943 961.5030518 958.7138672 954.1417847 949.8480225 947.0301514 945.1727295 943.1473999}}
156
+ offset2 {0 0}
157
+ pattern2 {-30 -39.9922 30 39.9922}
158
+ search2 {-21 -27.9945 21 27.9945}
159
+ enable3 true
160
+ track3 {{curve i x43 891.4584961 890.5662842 890.0018921 890.2399902 890.7495117 890.7131348 890.7103882 890.600647 890.7824097 890.2501221 889.9768677 889.579895 889.0435791 889.2418823 890.5750122 890.9279785 890.4457397 890.6000977 890.7605591 890.744751 891.4564209 892.039917 892.5856323 893.0419312 892.4890747 891.2918091 890.7734375 891.0606079 890.5719604 890.2973633} {curve i x43 1038.231934 1032.665283 1029.976807 1028.845947 1024.573242 1021.391602 1021.845276 1017.142273 1013.075745 1013.334351 1010.041504 1004.625977 1000.476501 999.1402588 998.1582642 993.6879883 989.8137207 985.8461304 982.5811157 980.0639038 976.4885864 973.2774048 971.4022217 970.0477905 967.1610107 962.5325928 958.045166 955.3913574 953.7072144 951.2816162}}
161
+ offset3 {0 0}
162
+ pattern3 {-30 -39.9922 30 39.9922}
163
+ search3 {-21 -27.9945 21 27.9945}
164
+ enable4 true
165
+ track4 {{curve i x43 586.2645264 586.2630615 586.2799072 586.3343506 586.7602539 588.1193237 588.7324219 589.8532104 589.9052734 589.977356 591.52771 591.5761108 591.5758057 591.4698486 591.4520264 591.5097656 591.5612183 588.135498 589.5732422 593.6963501 595.4083862 595.4401245 595.3721924 595.366333 595.6834106 595.3850098 595.399231 597.7342529 596.3684082 596.7190552} {curve i x43 1044.026733 1044.028687 1044.030029 1044.031006 1044.127197 1044.207275 1044.215332 1044.010254 1044.026245 1044.020264 1044.002686 1044.022095 1044.02002 1044.001831 1044.020996 1044.019043 1044.016235 1044.009644 1044.008789 1044.008667 1044.006592 1044.008423 1044.002686 1043.996338 1043.998413 1044.000977 1044.002441 1044.003662 1044.006226 1044.000244}}
166
+ offset4 {0 0}
167
+ pattern4 {-30 -39.9922 30 39.9922}
168
+ search4 {-21 -27.9945 21 27.9945}
169
+ translate {{curve i x44 0 0.002701333258 2.635448217 5.074706554 6.790052891 8.256922722 10.18109608 12.2953701 13.2035675 15.00567722 16.9188633 18.25300026 20.09132576 23.22340775 25.58423615 26.90999603 28.78192711 30.68673515 32.24595261 34.69006348 36.95048523 39.04616928 41.02588272 42.05426407 42.50882339 43.79053497 45.6860466 46.70064926 48.03400803} {curve i x44 0 -0.03271484375 -0.4829101562 -4.581665039 -7.722167969 -8.239257812 -13.07067871 -16.98535156 -16.54162598 -20.26135254 -26.1003418 -30.10101318 -31.39404297 -32.43878174 -36.90930176 -40.92608643 -45.01513672 -47.96020508 -50.65655518 -54.43157959 -57.85992432 -59.90814209 -61.14172363 -63.97302246 -68.72949219 -73.39715576 -75.72290039 -77.18707275 -80.31652832}}
170
+ center {{curve i x44 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354 419.3912354} {curve i x44 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525 1045.113525}}
171
+ name Tracker5
172
+ xpos -229
173
+ ypos 31
174
+ }
175
+ Tracker3 {
176
+ track1 {{curve i x1 744 744.8462524 746.2590942 748.0566406 749.2676392 749.1002197 748.1906738 748.1217041 749.1003418 750.0389404 750.2167969 749.7870483 749.788208 750.4743652 751.6644287 753.1139526 753.7770386 754.6323242 755.2877808 754.1697998 753.5599365 753.7480469 754.8384399 756.6184692 759.2086182 759.8250122 758.701355 757.6083374 757.6311035 758.7267456 761.6394043 761.7130127 760.6063843 760.4125366 761.4887695 762.6964111 763.2781982 762.4439697 762.2001343 762.7755127 765.1640625 765.385437 765.2145386 764.8850708 764.739563 765.5441284 766.4593506 766.5944824 767.4710693 767.8156128 768.4141846 768.3789673 768.5686646 768.9458008 768.8000488 769.3713989 771.1600952 772.0617065 771.6430054 772.5162964 773.1584473 773.4928589 774.6695557 775.5619507 776.5540161 777.4124146 777.4353027 776.534729 776.555603 777.1633301 777.0899048 777.331543} {curve i x1 848 847.3657837 846.84021 846.2132568 845.0287476 843.197876 841.4077759 840.4303589 839.9755249 839.6074219 839.0275269 838.567749 838.5619507 838.8782349 839.6806641 839.4669189 838.7495117 839.0230713 837.3721313 835.552002 834.0221558 830.8435669 830.2984009 830.1566772 827.9855957 825.6871948 823.5900269 820.9140015 819.5314331 818.1315918 817.460083 816.6588745 814.5872803 811.9662476 810.2791748 809.4104004 806.9620361 806.4186401 805.569397 801.274231 799.6680908 800.1745605 797.5275879 792.9977417 791.1506348 790.699585 787.3877563 784.9812622 785.9009399 782.2279053 778.9220581 779.9629517 777.574707 773.1608887 769.9456177 769.3756104 769.1588745 765.5921631 762.5613403 759.4534912 756.9703979 755.2514648 752.3972168 749.9224854 748.7357788 748.1188354 746.0631714 742.2403564 738.5117188 736.7841797 735.9403687 734.1416626}}
177
+ offset1 {0 0}
178
+ pattern1 {-30 -39.9922 30 39.9922}
179
+ search1 {-21 -27.9945 21 27.9945}
180
+ enable2 true
181
+ track2 {{curve i x1 876 876.9123535 878.4193726 880.2640991 881.4569092 881.142334 880.119873 880.0896606 881.0510254 881.9918213 882.1730347 881.7683716 881.652771 882.3792725 883.5749512 884.6835938 885.3735352 885.9415894 885.6031494 883.984314 883.4917603 883.8001099 884.1625366 885.4296875 887.2126465 887.5476074 886.4185791 885.255188 885.0910645 886.3699341 887.4002686 886.9536743 885.6081543 885.0144043 885.6445312 886.4590454 886.1710205 884.7367554 884.1090698 885.2255859 886.3491821 885.7426147 885.1547241 884.5113525 883.987854 884.3223267 884.4957275 884.3916626 885.0145264 884.8334351 884.7778931 884.1720581 884.1325684 883.9338379 883.2314453 883.3283081 884.5775146 884.8669434 884.4312744 884.5562134 884.4699707 884.4880371 885.2393188 885.8617554 886.4535522 886.7194214 886.3104248 884.9877319 884.6489868 884.6595459 884.1220093 884.1375122} {curve i x1 458 457.6660461 457.6105957 457.4333801 456.6820679 455.2132568 453.8573608 453.1264038 452.8676147 452.6466064 452.4220276 452.2914429 452.6375732 453.5993042 455.1962585 455.7677002 456.0588684 457.4969788 457.0060425 456.2896423 456.0915527 454.3453979 454.3914185 455.091217 453.7261353 452.2616272 451.1623535 449.6410828 449.3365784 449.162384 449.6311035 450.2255554 449.5179138 448.3620605 447.9227295 448.247467 447.0565491 447.6296082 448.1520691 445.5673218 445.3381348 446.8459167 445.8034973 442.8143311 442.3656006 443.2293701 441.1830444 439.9029236 442.1963196 439.7614136 437.9313354 440.177948 439.3363953 436.476532 434.6654968 435.2671814 436.2911682 434.1964722 432.3710022 430.4971008 429.1942139 428.5602112 426.8796387 425.5308228 425.5267639 425.8817444 425.1084595 422.4718323 420.1039429 419.4550171 419.5448914 419.1717529}}
182
+ offset2 {0 0}
183
+ pattern2 {-30 -39.9922 30 39.9922}
184
+ search2 {-21 -27.9945 21 27.9945}
185
+ enable3 true
186
+ track3 {{curve i x1 1010 1010.729797 1012.047852 1013.729248 1014.715149 1014.341736 1013.117432 1012.872681 1013.794983 1014.717346 1014.744019 1014.119263 1013.853027 1014.265137 1015.205261 1016.06189 1016.318909 1016.513794 1015.910217 1014.037964 1012.924194 1012.830933 1013.046692 1013.843506 1015.382324 1015.607788 1013.997131 1012.265747 1011.701477 1012.497742 1013.269775 1012.437256 1010.45929 1009.254822 1009.415771 1009.912598 1009.261658 1007.532227 1006.346619 1006.597351 1007.355591 1006.683167 1005.485474 1004.220642 1003.221252 1003.080322 1002.928711 1002.488525 1002.402161 1001.775574 1001.409607 1000.44342 999.725708 998.9241943 997.8444824 997.6234131 998.4984131 998.354126 997.4970093 997.1749878 996.8272705 996.4937134 996.7512207 997.0082397 997.2231445 997.2346802 996.3061523 994.6390991 993.7688599 993.5738525 992.6287231 992.1560059} {curve i x1 838 837.489624 837.1738892 836.5839844 835.444458 833.5827026 831.9481812 831.1097412 830.6359253 830.2399902 829.8863525 829.5657349 829.5872192 830.1494141 831.1259155 830.8094482 830.2275391 830.6273193 828.8632812 826.8237915 825.6110229 822.8728027 821.9101562 822.1154785 819.9260864 817.4864502 815.6368408 813.359436 812.0467529 810.7921753 810.0690308 809.3392944 807.4837036 805.1365967 803.5773926 802.6272583 800.1553345 799.5274658 798.8766479 795.1377563 793.4502563 793.5148926 791.0983276 786.7330322 785.0349121 784.7385254 781.2538452 778.762085 780.1833496 776.4221191 773.1487427 774.1483154 771.9489136 767.7217407 764.4731445 763.7915649 763.5622559 760.1399536 757.0385132 753.9181519 751.4299316 749.6403198 746.9520264 744.5003662 743.3780518 742.6636963 740.6126709 736.8687134 733.2910156 731.3718872 730.3251343 728.8146362}}
187
+ offset3 {0 0}
188
+ pattern3 {-30 -39.9922 30 39.9922}
189
+ search3 {-21 -27.9945 21 27.9945}
190
+ track4 {865 667}
191
+ offset4 {0 0}
192
+ pattern4 {-30 -39.9922 30 39.9922}
193
+ search4 {-21 -27.9945 21 27.9945}
194
+ translate {{curve i x1 0 0.8462498784 2.259093046 4.056670189 5.267645836 5.100254536 4.190683842 4.121730804 5.100346088 6.038945198 6.216821194 5.787080288 5.788224697 6.474363327 7.664461136 9.113978386 9.777040482 10.63235664 11.28781891 10.16983318 9.559972763 9.748059273 10.83843613 12.61847687 15.20864391 15.82505131 14.70138836 13.60835552 13.63111115 14.72675323 17.639431 17.71300888 16.60642433 16.41256905 17.48879814 18.69643211 19.27822495 18.44397163 18.20016479 18.77554893 21.16407585 21.38544846 21.21457863 20.88510704 20.73960114 21.54413986 22.45938873 22.5945015 23.47110748 23.8156414 24.41423798 24.37898445 24.56871796 24.9458065 24.80002594 25.37142563 27.16007423 28.06177139 27.64301872 28.5163269 29.15842056 29.492836 30.66961098 31.56196594 32.55404282 33.41242599 33.43531799 32.53472137 32.55559921 33.16335297 33.08991241 33.33156967} {curve i x1 0 -0.6342163086 -1.159790039 -1.786743164 -2.971252441 -4.802124023 -6.592224121 -7.569641113 -8.024475098 -8.392578125 -8.972473145 -9.432250977 -9.438049316 -9.121765137 -8.319335938 -8.533081055 -9.250488281 -8.976928711 -10.62786865 -12.44799805 -13.97784424 -17.15643311 -17.70159912 -17.84332275 -20.0144043 -22.31280518 -24.40997314 -27.08599854 -28.46856689 -29.8684082 -30.53991699 -31.34112549 -33.41271973 -36.03375244 -37.7208252 -38.58959961 -41.03796387 -41.58135986 -42.43060303 -46.72576904 -48.33190918 -47.82543945 -50.47241211 -55.0022583 -56.84936523 -57.30041504 -60.61224365 -63.01873779 -62.09906006 -65.77209473 -69.07794189 -68.03704834 -70.42529297 -74.83911133 -78.05438232 -78.62438965 -78.84112549 -82.40783691 -85.43865967 -88.54650879 -91.02960205 -92.74853516 -95.6027832 -98.07751465 -99.26422119 -99.88116455 -101.9368286 -105.7596436 -109.4882812 -111.2158203 -112.0596313 -113.8583374}}
195
+ center {{curve i x1 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744 744} {curve i x1 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848 848}}
196
+ name Tracker6
197
+ xpos -229
198
+ ypos 57
199
+ }
200
+ Tracker3 {
201
+ track1 {{curve i x1 1430.928345 1431.636841 1432.81958 1434.255249 1435.076904 1434.685547 1433.702515 1433.569824 1434.333496 1435.05249 1435.190552 1434.747559 1434.643311 1435.16748 1436.056641 1436.848022 1437.122681 1437.31604 1436.589966 1434.724121 1433.919312 1433.843872 1433.929932 1434.687134 1435.858521 1435.886841 1434.64502 1433.324585 1432.87146 1433.56311 1434.058228 1433.286865 1431.623047 1430.686646 1430.821533 1431.062012 1430.255737 1428.59314 1427.655518 1428.052002 1428.591553 1427.510498 1426.327271 1425.198486 1424.307495 1424.049683 1423.577271 1423.075806 1423.180664 1422.375244 1421.735107 1420.739746 1420.040527 1419.171265 1417.807495 1417.321533 1417.902466 1417.458008 1416.440796 1415.92981 1415.301758 1414.744751 1414.853394 1414.788574 1414.717896 1414.390503 1413.25 1411.426758 1410.332397 1409.808105 1408.694092 1408.199951} {curve i x1 674.5661011 674.6087036 674.8400269 674.8133545 674.1756592 672.9802246 672.1977539 671.8355713 671.6327515 671.3323364 671.3776855 671.673584 672.1558838 673.2752686 674.7250366 675.1672363 675.6419678 676.8936768 676.2596436 675.2485352 675.6268311 674.4877319 674.1586914 675.2824097 674.083252 672.4185791 672.1395874 671.6432495 671.4718018 671.7171631 671.7332764 672.149231 672.1646118 671.7125244 671.5898438 671.5690308 670.4312744 670.6257935 671.4101562 670.3562622 669.9462891 670.149231 669.7232666 667.6865845 667.4838867 668.1729736 666.1253052 664.7977295 667.6547241 665.692749 663.6815186 665.3730469 664.9901733 663.0587769 661.2542114 661.4945068 662.0689697 660.2163696 658.6752319 657.1504517 655.5131226 654.9684448 653.6159058 652.602417 652.5126953 652.5510254 651.694519 649.6739502 647.8149414 646.7283325 646.4102173 646.5}}
202
+ offset1 {0 0}
203
+ pattern1 {-10.2 -12.5 10.2 12.5}
204
+ search1 {-11.6 -16 11.6 16}
205
+ enable2 true
206
+ track2 {{curve i x1 1440.796997 1441.543579 1442.797241 1444.279419 1445.077881 1444.646851 1443.764526 1443.706787 1444.477051 1445.200562 1445.376831 1445.019165 1444.900879 1445.458618 1446.293701 1447.014282 1447.311157 1447.400879 1446.556396 1444.587891 1443.851929 1443.803833 1443.765747 1444.625854 1445.788696 1445.735107 1444.577148 1443.449951 1442.974365 1443.667969 1444.050537 1443.20813 1441.626221 1440.762817 1440.891113 1441.013672 1440.163452 1438.37439 1437.429321 1438.087402 1438.484131 1437.105103 1435.980713 1434.963501 1434.071045 1433.741699 1433.187622 1432.631836 1432.829956 1432.003296 1431.302246 1430.122437 1429.486816 1428.696045 1427.297485 1426.665405 1427.11084 1426.657959 1425.661133 1425.16394 1424.4021 1423.798218 1423.939087 1423.911499 1423.783081 1423.381958 1422.182007 1420.423706 1419.388794 1418.684814 1417.448975 1417} {curve i x1 446.8528442 446.8688354 447.0909729 447.0377197 446.4779968 445.3190308 444.6078796 444.3449707 444.0580444 443.7498474 443.8684998 444.196167 444.7521362 445.9613342 447.4721069 447.9829407 448.6542969 450.0466003 449.6174622 448.9105225 449.5559082 448.5363464 448.3190308 449.5268555 448.3970032 446.8205872 446.7504883 446.5310059 446.5359192 446.8959045 447.1088562 447.7759094 448.0668945 447.8753357 447.9641113 448.0851746 447.2416992 447.6739807 448.7558899 447.9513855 447.6990967 448.2099609 448.0755005 446.3623352 446.3803101 447.3527832 445.5339661 444.4941101 447.5119629 445.8290405 444.0686035 446.030304 445.983551 444.3522644 442.875 443.3344727 444.1150208 442.5625916 441.2927246 440.0533752 438.6603699 438.3034058 437.2069702 436.4185486 436.5743408 436.7803345 436.2943726 434.5811157 433.0140076 432.1363525 432.0904236 432.5}}
207
+ offset2 {0 0}
208
+ pattern2 {-14.5 -17 14.5 17}
209
+ search2 {-9.5 -13 9.5 13}
210
+ enable3 true
211
+ track3 {{curve i x1 1444.395264 1445.214478 1446.52771 1447.9104 1448.780762 1448.386597 1447.574463 1447.601929 1448.386475 1449.068726 1449.340576 1449.023438 1448.88916 1449.494507 1450.310669 1450.920898 1451.252197 1451.260254 1450.341919 1448.223511 1447.589844 1447.574707 1447.418335 1448.383301 1449.517456 1449.359741 1448.337769 1447.333862 1446.855347 1447.587646 1447.846802 1446.897217 1445.445923 1444.655273 1444.825684 1444.802612 1443.922119 1442.04541 1441.14978 1442.058594 1442.313354 1440.564209 1439.514038 1438.613281 1437.724365 1437.37915 1436.745117 1436.139282 1436.43811 1435.62854 1434.854492 1433.512939 1432.947021 1432.272827 1430.80249 1430.076538 1430.396606 1429.937256 1428.9375 1428.448608 1427.547974 1426.955322 1427.113647 1427.105957 1426.956421 1426.400391 1425.191162 1423.44458 1422.474365 1421.648682 1420.293091 1420} {curve i x1 209.1627655 209.1551819 209.3744659 209.3430634 208.7563324 207.6928558 207.0311737 206.7944489 206.5217743 206.1858978 206.2876587 206.7612305 207.3119354 208.6495056 210.2393494 210.8964539 211.7172546 213.3203278 213.1350555 212.7632751 213.6279144 212.7457886 212.7254333 214.024231 212.9179535 211.5032959 211.6376953 211.6094971 211.8119354 212.3075409 212.7425537 213.6943054 214.3275757 214.3996124 214.7146606 215.0637207 214.4468536 215.1990967 216.5930634 215.9863129 215.9910583 216.8664398 217.0289001 215.5955658 215.9162292 217.1623535 215.5881042 214.7386322 218.0781097 216.6117859 215.1597137 217.4947662 217.7359161 216.4174194 215.2617493 216.0467682 217.1044006 215.7897186 214.8120575 213.7843475 212.6661835 212.638382 211.7448273 211.1728058 211.5447998 212.0587158 211.8065186 210.3991241 209.148819 208.5771637 208.8531036 209.5}}
212
+ offset3 {0 0}
213
+ pattern3 {-13.5 -21 13.5 21}
214
+ search3 {-11 -18 11 18}
215
+ enable4 true
216
+ track4 {{curve i x1 1010.09967 1010.883179 1012.173218 1013.572632 1014.436157 1014.14679 1013.498169 1013.578552 1014.311401 1014.94458 1015.261169 1015.092468 1015.081665 1015.808777 1016.780518 1017.622314 1018.229065 1018.629211 1018.152405 1016.62439 1016.458191 1016.719604 1016.863281 1017.994507 1019.242798 1019.297119 1018.658386 1018.079834 1017.95343 1018.985779 1019.594543 1019.214478 1018.344666 1018.068054 1018.601318 1019.010742 1018.589172 1017.289124 1016.945679 1018.204834 1018.907532 1017.837646 1017.425415 1017.049438 1016.689758 1016.847961 1016.684753 1016.520447 1017.315674 1017.021912 1016.736023 1016.067932 1016.059998 1015.949097 1015.086121 1014.916504 1015.733398 1015.75647 1015.322998 1015.325073 1014.908203 1014.81134 1015.356201 1015.753845 1016.073242 1016.044373 1015.396362 1014.289185 1013.830627 1013.558716 1012.762085 1013} {curve i x1 208.5897369 208.5124512 208.65448 208.6997833 208.2177124 207.1616364 206.2505646 205.8065643 205.6100159 205.4523163 205.3891144 205.4068756 206.0223236 207.1463623 208.8195648 209.6749725 210.4140625 212.1140747 212.1812134 212.0778809 212.5478973 211.6218872 211.8955078 212.9082947 212.0795441 211.0990295 210.7515564 210.1210327 210.3474579 210.742569 211.6138611 212.6260529 212.8470306 212.605484 212.8784943 213.5977936 213.0831909 214.038147 215.1280212 213.8907318 214.2401733 215.8993835 215.8018951 214.0241547 214.283432 215.5494843 214.3294525 213.7433624 216.4305267 214.9965363 213.8935852 216.353241 216.3665924 214.8247223 213.9032135 214.9117737 216.2117157 215.0293579 214.0655365 213.0228119 212.3117981 212.293335 211.437149 210.8577423 211.2717438 212.0531006 211.8565369 210.3318481 208.9069672 208.766571 209.3080292 209.5}}
217
+ offset4 {0 0}
218
+ pattern4 {-13.5 -16.5 13.5 16.5}
219
+ search4 {-21 -27.9945 21 27.9945}
220
+ translate {{curve i x1 0 0.7085734606 1.891299605 3.326943874 4.148606777 3.757234097 2.774223566 2.641537666 3.405236721 4.124157429 4.262246132 3.819227457 3.71502018 4.239170074 5.128321171 5.919765949 6.194386005 6.387783527 5.661628246 3.795785427 2.990971088 2.915608644 3.001593351 3.758790731 4.930253983 4.958549023 3.71675992 2.396311522 1.943128586 2.634853125 3.129883766 2.358584404 0.6947463155 -0.2416548729 -0.1067713425 0.133693099 -0.6725862026 -2.335142374 -3.27282548 -2.876324654 -2.336790562 -3.41778183 -4.601057529 -5.729848385 -6.620830536 -6.878602028 -7.351014614 -7.852455616 -7.747607231 -8.553062439 -9.193232536 -10.18851376 -10.88774681 -11.75702667 -13.12078762 -13.60675335 -13.02582932 -13.47031307 -14.48747921 -14.99853516 -15.62652683 -16.18354988 -16.07494736 -16.13968849 -16.21038055 -16.53783798 -17.67825699 -19.50152016 -20.59588051 -21.12021446 -22.23417091 -22.7283783} {curve i x1 0 0.04260253906 0.2739257812 0.247253418 -0.3904418945 -1.585876465 -2.368347168 -2.730529785 -2.933349609 -3.233764648 -3.188415527 -2.89251709 -2.410217285 -1.29083252 0.1589355469 0.6011352539 1.075866699 2.327575684 1.69354248 0.682434082 1.06072998 -0.07836914062 -0.407409668 0.7163085938 -0.4828491211 -2.147521973 -2.426513672 -2.922851562 -3.094299316 -2.848937988 -2.832824707 -2.416870117 -2.401489258 -2.85357666 -2.976257324 -2.997070312 -4.13482666 -3.940307617 -3.155944824 -4.209838867 -4.619812012 -4.416870117 -4.842834473 -6.879516602 -7.082214355 -6.393127441 -8.440795898 -9.768371582 -6.911376953 -8.873352051 -10.88458252 -9.193054199 -9.575927734 -11.50732422 -13.31188965 -13.07159424 -12.49713135 -14.34973145 -15.89086914 -17.41564941 -19.05297852 -19.59765625 -20.95019531 -21.96368408 -22.05340576 -22.01507568 -22.87158203 -24.89215088 -26.75115967 -27.83776855 -28.15588379 -28.06610107}}
221
+ center {{curve i x1 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345 1430.928345} {curve i x1 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011 674.5661011}}
222
+ name Tracker7
223
+ xpos -229
224
+ ypos 83
225
+ }
226
+ Tracker3 {
227
+ track1 {1408.2 646.5}
228
+ offset1 {0 0}
229
+ pattern1 {-10.2 -12.5 10.2 12.5}
230
+ search1 {-11.6 -16 11.6 16}
231
+ track2 {1055 413}
232
+ offset2 {0 0}
233
+ pattern2 {-30 -39.9922 30 39.9922}
234
+ search2 {-21 -27.9945 21 27.9945}
235
+ track3 {1055 667}
236
+ offset3 {0 0}
237
+ pattern3 {-30 -39.9922 30 39.9922}
238
+ search3 {-21 -27.9945 21 27.9945}
239
+ track4 {865 667}
240
+ offset4 {0 0}
241
+ pattern4 {-30 -39.9922 30 39.9922}
242
+ search4 {-21 -27.9945 21 27.9945}
243
+ center {960 540}
244
+ name Tracker8
245
+ xpos -229
246
+ ypos 109
247
+ }
248
+ Tracker3 {
249
+ track1 {1408.2 646.5}
250
+ offset1 {0 0}
251
+ pattern1 {-10.2 -12.5 10.2 12.5}
252
+ search1 {-11.6 -16 11.6 16}
253
+ track2 {1055 413}
254
+ offset2 {0 0}
255
+ pattern2 {-30 -39.9922 30 39.9922}
256
+ search2 {-21 -27.9945 21 27.9945}
257
+ track3 {1055 667}
258
+ offset3 {0 0}
259
+ pattern3 {-30 -39.9922 30 39.9922}
260
+ search3 {-21 -27.9945 21 27.9945}
261
+ track4 {865 667}
262
+ offset4 {0 0}
263
+ pattern4 {-30 -39.9922 30 39.9922}
264
+ search4 {-21 -27.9945 21 27.9945}
265
+ center {960 540}
266
+ name Tracker9
267
+ xpos -229
268
+ ypos 135
269
+ }
270
+ Tracker3 {
271
+ track1 {{curve i x1 281 282.037323 283.6750488 285.6214905 287.0816345 287.0622253 286.255249 286.3925171 287.4206543 288.4656982 288.8470764 288.6242371 288.8080444 289.8336792 291.3615723 293.0301819 294.3124084 295.4292297 295.8589478 295.0783997 295.2789612 296.3830566 297.2606812 298.8829651 301.1322327 302.0831909 301.5857544 301.1542053 301.7848511 303.6392212 305.401062 305.9045715 305.4861755 305.8518677 307.3092651 308.8334656 309.2729797 308.637085} {curve i x1 724 723.4646606 722.9849854 722.6411133 722.0998535 721.0319824 719.6280518 718.7827148 718.4992065 718.4160767 717.9758911 717.4289551 717.6396484 718.0691528 719.1557007 719.8146362 719.8022461 720.9523315 721.0093994 721.0731812 720.2868652 718.7627563 719.1513672 719.078064 718.0164795 717.3582764 715.9324341 713.9817505 713.7991333 713.3148804 714.095459 714.6228027 713.5703735 712.2163696 711.6206665 712.2276001 711.3063354 712.2950439}}
272
+ offset1 {0 0}
273
+ pattern1 {-15 -20 15 20}
274
+ search1 {-21 -27.9945 21 27.9945}
275
+ enable2 true
276
+ track2 {{curve i x1 246 247.2097015 249.0201721 251.1205444 252.4726105 252.3348694 251.564209 251.7958374 252.8102722 253.8013763 254.3335114 254.2879333 254.6066437 255.9407654 257.7680664 259.4777527 261.0068359 262.394989 262.5858765 261.6608276 262.2633057 263.3469238 264.0953674 266.1458435 268.3206787 268.9576111 268.7429504 268.5728149 269.1824646 271.3503418 273.0897217 273.6837463 273.5477905 274.2084656 275.8029785 277.3222656 277.6937866 277.2054749} {curve i x1 246 245.7554169 245.6654205 245.8916779 245.5748444 244.6448517 243.2116852 242.409317 242.3674622 242.5104828 242.145401 241.7042694 242.0879669 242.821701 244.4819336 245.5908356 246.2312927 247.9665375 248.3767853 248.8401489 248.4238129 247.4455872 248.2613983 248.6374817 248.2770233 248.0350952 246.7993164 245.1101074 245.2840729 245.539444 247.0514832 248.0520172 247.3809662 246.5451202 246.6033783 247.8579865 247.5569 250.1986847}}
277
+ offset2 {0 0}
278
+ pattern2 {-15 -20 15 20}
279
+ search2 {-21 -27.9945 21 27.9945}
280
+ enable3 true
281
+ track3 {{curve i x1 256 257.1604614 258.9135742 260.9565735 262.362793 262.3053894 261.521637 261.6714478 262.7166443 263.7755127 264.20401 264.0499573 264.310791 265.459198 267.1589661 268.8535767 270.2693481 271.5518188 271.9371643 271.0185852 271.4644165 272.5534973 273.4040222 275.1945496 277.4077148 278.2201233 277.8777161 277.6032715 278.191803 280.2442322 281.9934082 282.5334473 282.2659302 282.7737732 284.3026123 285.8440247 286.2712708 285.7057495} {curve i x1 488 487.6318054 487.4205627 487.3988953 486.929657 485.9594421 484.5899963 483.7236938 483.5762024 483.6470642 483.211853 482.7051086 482.9872131 483.5175476 484.8825684 485.7429504 486.0180054 487.4430542 487.7167969 487.9144897 487.3790894 486.1165466 486.7594604 486.8191528 486.1779175 485.7086487 484.3815918 482.5985413 482.5441284 482.4182739 483.5215149 484.270874 483.4494019 482.3181458 482.0378723 483.0127258 482.4693909 483.431427}}
282
+ offset3 {0 0}
283
+ pattern3 {-13 -20 13 20}
284
+ search3 {-21 -27.9945 21 27.9945}
285
+ track4 {865 667}
286
+ offset4 {0 0}
287
+ pattern4 {-30 -39.9922 30 39.9922}
288
+ search4 {-21 -27.9945 21 27.9945}
289
+ translate {{curve i x1 0 1.037334919 2.675052643 4.621500492 6.081639767 6.062226772 5.255260944 5.392525196 6.420657158 7.465706825 7.847075462 7.624238491 7.80804348 8.833680153 10.3615818 12.03018188 13.31242275 14.42924023 14.85895824 14.07841015 14.27897358 15.38306332 16.26069832 17.88296318 20.13223648 21.08319664 20.58576202 20.15421295 20.7848587 22.63923264 24.40107536 24.90457535 24.4861908 24.85187721 26.30926895 27.83346176 28.27297783 27.63708878} {curve i x1 0 -0.5353393555 -1.015014648 -1.358886719 -1.900146484 -2.968017578 -4.371948242 -5.217285156 -5.500793457 -5.58392334 -6.024108887 -6.571044922 -6.360351562 -5.930847168 -4.844299316 -4.18536377 -4.197753906 -3.047668457 -2.990600586 -2.926818848 -3.713134766 -5.237243652 -4.848632812 -4.921936035 -5.983520508 -6.641723633 -8.067565918 -10.01824951 -10.2008667 -10.68511963 -9.904541016 -9.377197266 -10.42962646 -11.78363037 -12.3793335 -11.7723999 -12.69366455 -11.70495605}}
290
+ center {{curve i x1 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281 281} {curve i x1 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724 724}}
291
+ name Tracker10
292
+ xpos -229
293
+ ypos 161
294
+ }
295
+ Viewer {
296
+ frame 1
297
+ name Viewer1
298
+ xpos -40
299
+ ypos -10
300
+ }
@@ -26,6 +26,15 @@ class NukeImportTest < Test::Unit::TestCase
26
26
  assert_in_delta 510.107, sec_tracker.keyframes[-1].abs_y, DELTA
27
27
  end
28
28
 
29
+ def test_parsing_many_tracks_per_node
30
+ fixture = File.open(File.dirname(__FILE__) + '/samples/018.nk')
31
+ parser = Tracksperanto::Import::NukeScript.new
32
+ parser.width = 1920
33
+ parser.height = 1080
34
+ trackers = parser.parse(fixture)
35
+ assert_equal 21, trackers.length
36
+ end
37
+
29
38
  def test_parsing_from_nuke_group
30
39
  fixture = File.open(File.dirname(__FILE__) + '/samples/one_tracker_with_break_in_grp.nk')
31
40
 
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
  s.email = ["me@julik.nl"]
13
13
  s.executables = ["tracksperanto"]
14
14
  s.extra_rdoc_files = ["History.txt", "Manifest.txt", "README.txt"]
15
- s.files = [".DS_Store", "History.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/tracksperanto", "lib/.DS_Store", "lib/export/base.rb", "lib/export/equalizer3.rb", "lib/export/equalizer4.rb", "lib/export/match_mover.rb", "lib/export/maya_live.rb", "lib/export/mux.rb", "lib/export/nuke_script.rb", "lib/export/pftrack.rb", "lib/export/pftrack_5.rb", "lib/export/shake_text.rb", "lib/export/syntheyes.rb", "lib/import/base.rb", "lib/import/equalizer3.rb", "lib/import/equalizer4.rb", "lib/import/flame_stabilizer.rb", "lib/import/match_mover.rb", "lib/import/maya_live.rb", "lib/import/nuke_script.rb", "lib/import/pftrack.rb", "lib/import/shake_grammar/catcher.rb", "lib/import/shake_grammar/lexer.rb", "lib/import/shake_script.rb", "lib/import/shake_text.rb", "lib/import/syntheyes.rb", "lib/middleware/base.rb", "lib/middleware/golden.rb", "lib/middleware/reformat.rb", "lib/middleware/scaler.rb", "lib/middleware/shift.rb", "lib/middleware/slipper.rb", "lib/pipeline/base.rb", "lib/tracksperanto.rb", "lib/tracksperanto/block_init.rb", "lib/tracksperanto/casts.rb", "lib/tracksperanto/const_name.rb", "lib/tracksperanto/ext_io.rb", "lib/tracksperanto/format_detector.rb", "lib/tracksperanto/keyframe.rb", "lib/tracksperanto/safety.rb", "lib/tracksperanto/simple_export.rb", "lib/tracksperanto/tracker.rb", "lib/tracksperanto/zip_tuples.rb", "test/.DS_Store", "test/export/.DS_Store", "test/export/README_EXPORT_TESTS.txt", "test/export/samples/ref_Mayalive.txt", "test/export/samples/ref_Mayalive_CustomAspect.txt", "test/export/samples/ref_NukeScript.nk", "test/export/samples/ref_NukeScript.nk.autosave", "test/export/samples/ref_PFTrack.2dt", "test/export/samples/ref_PFTrack5.2dt", "test/export/samples/ref_ShakeText.txt", "test/export/samples/ref_Syntheyes.txt", "test/export/samples/ref_equalizer.txt", "test/export/samples/ref_equalizer3.txt", "test/export/samples/ref_matchmover.rz2", "test/export/test_equalizer3_export.rb", "test/export/test_equalizer_export.rb", "test/export/test_match_mover_export.rb", "test/export/test_maya_live_export.rb", "test/export/test_mux.rb", "test/export/test_nuke_export.rb", "test/export/test_pftrack5_export.rb", "test/export/test_pftrack_export.rb", "test/export/test_shake_export.rb", "test/export/test_syntheyes_export.rb", "test/helper.rb", "test/import/.DS_Store", "test/import/samples/.DS_Store", "test/import/samples/3de_export_cube.txt", "test/import/samples/3de_export_v3.txt", "test/import/samples/flyover2DP_syntheyes.txt", "test/import/samples/four_tracks_in_one_matchmove.shk", "test/import/samples/four_tracks_in_one_stabilizer.shk", "test/import/samples/fromCombustion_fromMidClip_wSnap.stabilizer", "test/import/samples/garage.2dt", "test/import/samples/hugeFlameSetup.stabilizer", "test/import/samples/kipPointsMatchmover.rz2", "test/import/samples/mayalive_kipShot.txt", "test/import/samples/megaTrack.action.3dtrack.stabilizer", "test/import/samples/one_shake_tracker.txt", "test/import/samples/one_shake_tracker_from_first.txt", "test/import/samples/one_tracker_with_break.nk", "test/import/samples/one_tracker_with_break_in_grp.nk", "test/import/samples/shake_tracker_nodes.shk", "test/import/samples/shake_tracker_nodes_to_syntheyes.txt", "test/import/samples/sourcefile_pftrack.2dt", "test/import/samples/three_tracks_in_one_stabilizer.shk", "test/import/samples/two_shake_trackers.txt", "test/import/samples/two_tracks_in_one_tracker.shk", "test/import/test_3de_import.rb", "test/import/test_3de_import3.rb", "test/import/test_flame_import.rb", "test/import/test_match_mover_import.rb", "test/import/test_maya_live_import.rb", "test/import/test_nuke_import.rb", "test/import/test_pftrack_import.rb", "test/import/test_shake_catcher.rb", "test/import/test_shake_lexer.rb", "test/import/test_shake_script_import.rb", "test/import/test_shake_text_import.rb", "test/import/test_syntheyes_import.rb", "test/middleware/test_golden_middleware.rb", "test/middleware/test_reformat_middleware.rb", "test/middleware/test_scaler_middleware.rb", "test/middleware/test_shift_middleware.rb", "test/middleware/test_slip_middleware.rb", "test/test_const_name.rb", "test/test_extio.rb", "test/test_format_detector.rb", "test/test_keyframe.rb", "test/test_simple_export.rb", "test/test_tracker.rb", "tracksperanto.gemspec"]
15
+ s.files = [".DS_Store", "History.txt", "Manifest.txt", "README.txt", "Rakefile", "bin/tracksperanto", "lib/.DS_Store", "lib/export/base.rb", "lib/export/equalizer3.rb", "lib/export/equalizer4.rb", "lib/export/match_mover.rb", "lib/export/maya_live.rb", "lib/export/mux.rb", "lib/export/nuke_script.rb", "lib/export/pftrack.rb", "lib/export/pftrack_5.rb", "lib/export/shake_text.rb", "lib/export/syntheyes.rb", "lib/import/base.rb", "lib/import/equalizer3.rb", "lib/import/equalizer4.rb", "lib/import/flame_stabilizer.rb", "lib/import/match_mover.rb", "lib/import/maya_live.rb", "lib/import/nuke_script.rb", "lib/import/pftrack.rb", "lib/import/shake_grammar/catcher.rb", "lib/import/shake_grammar/lexer.rb", "lib/import/shake_script.rb", "lib/import/shake_text.rb", "lib/import/syntheyes.rb", "lib/middleware/base.rb", "lib/middleware/golden.rb", "lib/middleware/reformat.rb", "lib/middleware/scaler.rb", "lib/middleware/shift.rb", "lib/middleware/slipper.rb", "lib/pipeline/base.rb", "lib/tracksperanto.rb", "lib/tracksperanto/block_init.rb", "lib/tracksperanto/casts.rb", "lib/tracksperanto/const_name.rb", "lib/tracksperanto/ext_io.rb", "lib/tracksperanto/format_detector.rb", "lib/tracksperanto/keyframe.rb", "lib/tracksperanto/safety.rb", "lib/tracksperanto/simple_export.rb", "lib/tracksperanto/tracker.rb", "lib/tracksperanto/zip_tuples.rb", "test/.DS_Store", "test/export/.DS_Store", "test/export/README_EXPORT_TESTS.txt", "test/export/samples/ref_Mayalive.txt", "test/export/samples/ref_Mayalive_CustomAspect.txt", "test/export/samples/ref_NukeScript.nk", "test/export/samples/ref_NukeScript.nk.autosave", "test/export/samples/ref_PFTrack.2dt", "test/export/samples/ref_PFTrack5.2dt", "test/export/samples/ref_ShakeText.txt", "test/export/samples/ref_Syntheyes.txt", "test/export/samples/ref_equalizer.txt", "test/export/samples/ref_equalizer3.txt", "test/export/samples/ref_matchmover.rz2", "test/export/test_equalizer3_export.rb", "test/export/test_equalizer_export.rb", "test/export/test_match_mover_export.rb", "test/export/test_maya_live_export.rb", "test/export/test_mux.rb", "test/export/test_nuke_export.rb", "test/export/test_pftrack5_export.rb", "test/export/test_pftrack_export.rb", "test/export/test_shake_export.rb", "test/export/test_syntheyes_export.rb", "test/helper.rb", "test/import/.DS_Store", "test/import/samples/.DS_Store", "test/import/samples/3de_export_cube.txt", "test/import/samples/3de_export_v3.txt", "test/import/samples/flyover2DP_syntheyes.txt", "test/import/samples/four_tracks_in_one_matchmove.shk", "test/import/samples/four_tracks_in_one_stabilizer.shk", "test/import/samples/fromCombustion_fromMidClip_wSnap.stabilizer", "test/import/samples/garage.2dt", "test/import/samples/hugeFlameSetup.stabilizer", "test/import/samples/kipPointsMatchmover.rz2", "test/import/samples/mayalive_kipShot.txt", "test/import/samples/megaTrack.action.3dtrack.stabilizer", "test/import/samples/one_shake_tracker.txt", "test/import/samples/one_shake_tracker_from_first.txt", "test/import/samples/one_tracker_with_break.nk", "test/import/samples/018.nk", "test/import/samples/one_tracker_with_break_in_grp.nk", "test/import/samples/shake_tracker_nodes.shk", "test/import/samples/shake_tracker_nodes_to_syntheyes.txt", "test/import/samples/sourcefile_pftrack.2dt", "test/import/samples/three_tracks_in_one_stabilizer.shk", "test/import/samples/two_shake_trackers.txt", "test/import/samples/two_tracks_in_one_tracker.shk", "test/import/test_3de_import.rb", "test/import/test_3de_import3.rb", "test/import/test_flame_import.rb", "test/import/test_match_mover_import.rb", "test/import/test_maya_live_import.rb", "test/import/test_nuke_import.rb", "test/import/test_pftrack_import.rb", "test/import/test_shake_catcher.rb", "test/import/test_shake_lexer.rb", "test/import/test_shake_script_import.rb", "test/import/test_shake_text_import.rb", "test/import/test_syntheyes_import.rb", "test/middleware/test_golden_middleware.rb", "test/middleware/test_reformat_middleware.rb", "test/middleware/test_scaler_middleware.rb", "test/middleware/test_shift_middleware.rb", "test/middleware/test_slip_middleware.rb", "test/test_const_name.rb", "test/test_extio.rb", "test/test_format_detector.rb", "test/test_keyframe.rb", "test/test_simple_export.rb", "test/test_tracker.rb", "tracksperanto.gemspec"]
16
16
  s.has_rdoc = true
17
17
  s.homepage = %q{http://guerilla-di.org/tracksperanto}
18
18
  s.rdoc_options = ["--main", "README.txt"]
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tracksperanto
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.2
4
+ version: 1.5.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Julik Tarkhanov
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-10-11 00:00:00 +02:00
12
+ date: 2009-10-18 00:00:00 +02:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -132,6 +132,7 @@ files:
132
132
  - test/import/samples/mayalive_kipShot.txt
133
133
  - test/import/samples/megaTrack.action.3dtrack.stabilizer
134
134
  - test/import/samples/one_shake_tracker.txt
135
+ - test/import/samples/018.nk
135
136
  - test/import/samples/one_shake_tracker_from_first.txt
136
137
  - test/import/samples/one_tracker_with_break.nk
137
138
  - test/import/samples/one_tracker_with_break_in_grp.nk