class Tracksperanto::Tool::Flop
Flips the comp being exported vertically
Public Class Methods
action_description()
click to toggle source
# File lib/tools/flop.rb, line 4 def self.action_description "Mirror all the tracker paths vertically" end
Public Instance Methods
start_export(w, h)
click to toggle source
Calls superclass method
# File lib/tools/flop.rb, line 8 def start_export(w, h) factor = -1 @exporter = Tracksperanto::Tool::Scaler.new(@exporter, :y_factor => factor) super end