Skip to content

Commit acbc004

Browse files
committed
PerspectiveMotion: Delete some ancient comments carried over from Zahuczky's old Perspective-Motion script
1 parent cfac318 commit acbc004

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

macros/arch.PerspectiveMotion.moon

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -222,17 +222,14 @@ parse_single_pin = (lines, marker) ->
222222

223223
return x, y
224224

225-
-- function that contains everything that happens before the transforms
226225
parse_powerpin_data = (powerpin) ->
227-
-- Putting the user input into a table
228226
lines = [ line for line in string.gmatch(powerpin, "([^\n]*)\n?") ]
229227

230228
return nil unless #([l for l in *lines when l\match"Effects[\t ]+CC Power Pin #1[\t ]+CC Power Pin%-0002"]) != 0
231229

232230
-- FIXME sanity check more things here like the resolution and frame rate matching
233231

234-
-- Filtering out everything other than the data, and putting them into their own tables.
235-
-- Power Pin data goes like this: TopLeft=0002, TopRight=0003, BottomRight=0005, BottomLeft=0004
232+
-- Power Pin pins are ordered as follows: TopLeft=0002, TopRight=0003, BottomRight=0005, BottomLeft=0004
236233
x1, y1 = parse_single_pin(lines, "0002")
237234
x2, y2 = parse_single_pin(lines, "0003")
238235
x3, y3 = parse_single_pin(lines, "0005")

0 commit comments

Comments
 (0)