Class: Savage::Directions::LineTo

Inherits:
PointTarget show all
Defined in:
lib/ext/savage/lib/savage/directions/line_to.rb

Instance Attribute Summary

Attributes inherited from PointTarget

#target

Attributes inherited from Savage::Direction

#absolute

Instance Method Summary collapse

Methods inherited from PointTarget

#initialize, #to_a

Methods inherited from Savage::Direction

#absolute?, #initialize, #relative?, #to_command

Methods included from Transformable

#rotate, #scale, #skew_x, #skew_y, #translate

Methods included from Utils

#bool_to_int

Constructor Details

This class inherits a constructor from Savage::Directions::PointTarget

Instance Method Details

#command_codeObject



4
5
6
# File 'lib/ext/savage/lib/savage/directions/line_to.rb', line 4

def command_code
  (absolute?) ? 'L' : 'l'
end

#transform(scale_x, skew_x, skew_y, scale_y, tx, ty) ⇒ Object



8
9
10
11
12
# File 'lib/ext/savage/lib/savage/directions/line_to.rb', line 8

def transform(scale_x, skew_x, skew_y, scale_y, tx, ty)
  # relative line_to dont't need to be tranlated
  tx = ty = 0 if relative?
  transform_dot( target, scale_x, skew_x, skew_y, scale_y, tx, ty)
end