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