savage-transform 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.document +5 -0
- data/.gitignore +22 -0
- data/.rspec +1 -0
- data/LICENSE +20 -0
- data/README.rdoc +108 -0
- data/Rakefile +1 -0
- data/VERSION +1 -0
- data/lib/savage.rb +3 -0
- data/lib/savage/direction.rb +56 -0
- data/lib/savage/direction_proxy.rb +19 -0
- data/lib/savage/directions/arc_to.rb +30 -0
- data/lib/savage/directions/close_path.rb +22 -0
- data/lib/savage/directions/coordinate_target.rb +21 -0
- data/lib/savage/directions/cubic_curve_to.rb +47 -0
- data/lib/savage/directions/horizontal_to.rb +31 -0
- data/lib/savage/directions/line_to.rb +15 -0
- data/lib/savage/directions/move_to.rb +15 -0
- data/lib/savage/directions/point_target.rb +22 -0
- data/lib/savage/directions/quadratic_curve_to.rb +44 -0
- data/lib/savage/directions/vertical_to.rb +31 -0
- data/lib/savage/parser.rb +108 -0
- data/lib/savage/path.rb +66 -0
- data/lib/savage/sub_path.rb +78 -0
- data/lib/savage/transformable.rb +59 -0
- data/lib/savage/utils.rb +7 -0
- data/savage-transform.gemspec +26 -0
- data/spec/savage/directions/arc_to_spec.rb +97 -0
- data/spec/savage/directions/close_path_spec.rb +30 -0
- data/spec/savage/directions/cubic_curve_to_spec.rb +146 -0
- data/spec/savage/directions/horizontal_to_spec.rb +10 -0
- data/spec/savage/directions/line_to_spec.rb +14 -0
- data/spec/savage/directions/move_to_spec.rb +10 -0
- data/spec/savage/directions/point_spec.rb +12 -0
- data/spec/savage/directions/quadratic_curve_spec.rb +123 -0
- data/spec/savage/directions/vertical_to_spec.rb +10 -0
- data/spec/savage/parser_spec.rb +250 -0
- data/spec/savage/path_spec.rb +105 -0
- data/spec/savage/sub_path_spec.rb +195 -0
- data/spec/savage/transformable_spec.rb +99 -0
- data/spec/savage_spec.rb +5 -0
- data/spec/shared/command.rb +13 -0
- data/spec/shared/coordinate_target.rb +36 -0
- data/spec/shared/direction.rb +29 -0
- data/spec/shared/point_target.rb +45 -0
- data/spec/spec_helper.rb +36 -0
- metadata +153 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: cf1e69ab33f99df9fad325436299518c244b3177
|
4
|
+
data.tar.gz: 170690ea6f0578153fc7b5871fb15bf0fd008a31
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 183580c5e2024cb45d96c63c2c505242fd31d66da527559fa29791247c446102a0b207a061212c44ec5a0058017ac291e764bf374873e0722e7e4654eae918f6
|
7
|
+
data.tar.gz: 968a69b2944465fb32a34b1113b8c95bccaf002575c1632ea60da43e598acc6a627270b5433c7b6c67d95716505b1a5c254dcad3ebef00cde72faeeaad5e31a6
|
data/.document
ADDED
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2010 Jeremy Holland
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,108 @@
|
|
1
|
+
= Savage
|
2
|
+
|
3
|
+
A little gem for extracting and manipulating SVG vector path data, Savage will make your life easier when it comes time to dynamically draw new and manipulate existing SVG paths. No more wacky regex to capture those cryptic path data strings; just pass the whole "d" attribute into Savage's parser, et voilá: You'll be given an instance of Savage::Path, replete with an array of subpaths split on the "move to" commands (to better help with those pesky winding issues). In turn, each subpath contains its own array of directions that can be swapped around, reconfigured, and otherwise manipulated to your heart's content in a truly human-readable way.
|
4
|
+
|
5
|
+
== Latest Update
|
6
|
+
|
7
|
+
Version 1.2.0 includes a new array abstraction (see below) and optimized implementation of Direction#to_command, courtesy of {bdon}[https://github.com/bdon]!
|
8
|
+
|
9
|
+
== Usage
|
10
|
+
|
11
|
+
<b>Parsing existing data</b>
|
12
|
+
|
13
|
+
Easy-peasy Japanesey. Just take a look at the below:
|
14
|
+
|
15
|
+
path = Savage::Parser.parse my_path_data_string
|
16
|
+
path.subpaths # [subpath_1, subpath_2, ... subpath_n]
|
17
|
+
path.subpaths.last.directions # [direction_1, direction_2, ... direction_n]
|
18
|
+
|
19
|
+
Once extracted, you can manipulate, add, and remove the subpaths and directions as you see fit. See below for instructions on using the various direction types
|
20
|
+
|
21
|
+
<b>Creating from scratch</b>
|
22
|
+
|
23
|
+
What if you want to roll your own from the get-go? No problem:
|
24
|
+
|
25
|
+
path = Savage::Path.new do |p|
|
26
|
+
p.move_to 100, 200
|
27
|
+
p.line_to 300, 400
|
28
|
+
p.horizontal_to 500
|
29
|
+
p.close_path
|
30
|
+
end
|
31
|
+
|
32
|
+
We'll learn more about the actual drawing methods here shortly, but suffice it to say they are provided both as methods on the constructor block parameter for the sake of your visual organization, and the path itself after instantiation, as below:
|
33
|
+
|
34
|
+
path = Savage::Path.new
|
35
|
+
path.move_to 100, 200
|
36
|
+
path.line_to 300, 400
|
37
|
+
path.horizontal_to 500
|
38
|
+
path.close_path
|
39
|
+
|
40
|
+
<b>Drawing with Savage</b>
|
41
|
+
|
42
|
+
So what are the different directions we can give our virtual pen? Here I'll refer you first to the SVG 1.1 specification by our friends down at the W3C, as they can describe all the specifics much better than I: http://www.w3.org/TR/SVG/paths.html#PathData. Each "command" listed in that section has an analog method on the Savage::SubPath class as well as the Savage::Path class (calling one of the methods on an instance of the Savage::Path class actually just delegates the call to the last SubPath in that path's selection of subpaths). Every parameter of these methods is expected to be a Numeric except where noted otherwise. The methods are as follows:
|
43
|
+
|
44
|
+
* <b>path.move_to(target_x, target_y)</b> - Move the 'pen' to the specified coordinates on the 'canvas' without drawing anything. Note that you can only call this method on a subpath if it's otherwise empty. Most of the time, just call this on an instance of the Path class, which will actually create a new subpath for you to continue drawing into
|
45
|
+
* <b>path.close_path()</b> - Draw a straight line from the current position to the coordinates of the start of the current subpath
|
46
|
+
* <b>path.line_to(target_x, target_y)</b> - Draw a straight line from the current position to the specified coordinates
|
47
|
+
* <b>path.horizontal_to(target_x)</b> - Draw a straight horizontal line to the provided x coordinate
|
48
|
+
* <b>path.vertical_to(target_y)</b> - Draw a straight vertical line to the provided y coordinate
|
49
|
+
* <b>path.cubic_curve_to(control_1_x, control_1_y, control_2_x, control_2_y, target_x, target_y)</b> - Draw a cubic Bézier curve from the current position to the target coordinates (target_x/y) using the control points specified - see the SVG specification referred to above for more info
|
50
|
+
* <b>path.cubic_curve_to(control_2_x, control_2_y, target_x, target_y)</b> - Shorthand cubic Bézier curve; assumes continuation of previous curve. See SVG specification
|
51
|
+
* <b>path.quadratic_curve_to(control_x, control_y, target_x, target_y)</b> - Draw a quadratic Bézier curve from the current position to the target coordinates (target_x/y) using the control point specified - see the SVG specification referred to above for more info
|
52
|
+
* <b>path.quadratic_curve_to(target_x, target_y)</b> - Shorthand quadratic Bézier curve; assumes continuation of previous curve. See SVG specification
|
53
|
+
* <b>path.arc_to(radius_x,radius_y,rotation,large_arc_flag,sweep_flag,target_x,target_y)</b> - This is a doozy and complicated as sin to explain, so we'll let the W3C do it for us - see the spec. Otherwise, be aware that the large_arc_flag and sweep_flag arguments are expected to be boolean values, not Numeric.
|
54
|
+
|
55
|
+
There you have it, pretty much right out of the book. One thing to keep in mind is that all of these methods use ABSOLUTE coordinates by default; if you want to use relative coordinates (based on the current position of the 'pen'), just pass false as the final argument to any of them:
|
56
|
+
|
57
|
+
path.line_to 100, 200, false
|
58
|
+
|
59
|
+
Each of these commands just creates a new instance of the appropriate subclass of the Savage::Direction class and pushes it onto the end of the directions list in question. Don't necessarily want to draw onto the end? Just create your own instance using the standard constructor and insert it wherever it butters your biscuit so to do:
|
60
|
+
|
61
|
+
direction = Savage::Directions::LineTo.new(100,200)
|
62
|
+
subpath.directions.insert(3,direction)
|
63
|
+
|
64
|
+
Did you mess up before and need to change a directions coordinates after you drew it (or, more likely, after you parsed it out of some pre-existing data)? No problem:
|
65
|
+
|
66
|
+
direction = Savage::Directions::LineTo.new(100,200)
|
67
|
+
direction.target.x = 234
|
68
|
+
|
69
|
+
As you may have guessed, Savage::Path#subpaths and Savage::SubPath#directions are both just good old-fashioned arrays, so you can fiddle with them using all your favorite Enumerable tricks as always.
|
70
|
+
|
71
|
+
<b>Abstracting it to an array (new in v1.2.0!)</b>
|
72
|
+
|
73
|
+
Bang!:
|
74
|
+
|
75
|
+
path.to_a # => ["M", 100, 200, ...]
|
76
|
+
|
77
|
+
<b>Turning it back into a path data string</b>
|
78
|
+
|
79
|
+
Bang!:
|
80
|
+
|
81
|
+
path.to_command # => 'M100 200-342 43.5Q-34.88 123.9 13-532' or whatever...
|
82
|
+
|
83
|
+
Note that the #to_command method exists on Savage::Path, Savage::SubPath, and each subclass of Savage::Direction, so you can be as fine-grained with it as needed.
|
84
|
+
|
85
|
+
== Issues / Feature Requests
|
86
|
+
|
87
|
+
I have no doubt that will be some problems with this thing, as well as features missing that some of you fine folks might want. Please, please, please check Github's issue-tracking system to see if a ticket for the problem has already been submitted, or create a new one if not. I'll check the issues listed therein regularly, but you email me directly at your own risk (and by risk, I mean risk of not receiving a reply). :)
|
88
|
+
|
89
|
+
== Note on Patches/Pull Requests
|
90
|
+
|
91
|
+
* Fork the project.
|
92
|
+
* Make your feature addition or bug fix. I very much prefer feature-specific branches.
|
93
|
+
* Add specs for it. This is important so I don't break it in a future version unintentionally, which I can guarantee I will do.
|
94
|
+
* Commit. Do not mess with rakefile, version, or history, please.
|
95
|
+
* Send me a pull request - again, bonus points for topic branches.
|
96
|
+
|
97
|
+
== Contributors
|
98
|
+
|
99
|
+
* Jeremy Holland (jeremy@jeremypholland.com, github:{awebneck}[https://github.com/awebneck]) -- author
|
100
|
+
* Christoffer Klang (toffeklang@yahoo.se, github:{christoffer}[https://github.com/christoffer]) -- regexp improvements
|
101
|
+
* Bartosz Dz (github:{MatmaRex}[https://github.com/matmarex]) -- parser improvements, scientific notation support, bug fixes
|
102
|
+
* Brandon Liu (github:{bdon}[https://github.com/bdon]) -- spec improvements, array abstraction
|
103
|
+
|
104
|
+
== Copyright
|
105
|
+
|
106
|
+
Copyright (c) 2010 Jeremy Holland. See LICENSE for details.
|
107
|
+
|
108
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
1.3.0
|
data/lib/savage.rb
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
module Savage
|
2
|
+
module Directions
|
3
|
+
Point = Struct.new :x, :y
|
4
|
+
end
|
5
|
+
|
6
|
+
class Direction
|
7
|
+
|
8
|
+
include Utils
|
9
|
+
include Transformable
|
10
|
+
|
11
|
+
def initialize(absolute)
|
12
|
+
@absolute = absolute
|
13
|
+
end
|
14
|
+
|
15
|
+
def absolute?
|
16
|
+
@absolute
|
17
|
+
end
|
18
|
+
|
19
|
+
def relative?
|
20
|
+
!absolute?
|
21
|
+
end
|
22
|
+
|
23
|
+
def to_command
|
24
|
+
arr = to_a
|
25
|
+
arr[0] + arr[1..-1].map {|i| to_short_f(i)}.join(' ').gsub(/ -/,'-')
|
26
|
+
end
|
27
|
+
|
28
|
+
# Public: determine if this direction is fully transformable.
|
29
|
+
# A fully transformable directions can accept any
|
30
|
+
# transform including rotate.
|
31
|
+
#
|
32
|
+
# Returns: true by default
|
33
|
+
def fully_transformable?
|
34
|
+
true
|
35
|
+
end
|
36
|
+
|
37
|
+
private
|
38
|
+
|
39
|
+
def to_short_f n
|
40
|
+
f = 1000000.0
|
41
|
+
n = (n * f).round / f
|
42
|
+
n == n.to_i ? n.to_i : n
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
require File.dirname(__FILE__) + "/directions/close_path"
|
48
|
+
require File.dirname(__FILE__) + "/directions/coordinate_target"
|
49
|
+
require File.dirname(__FILE__) + "/directions/horizontal_to"
|
50
|
+
require File.dirname(__FILE__) + "/directions/vertical_to"
|
51
|
+
require File.dirname(__FILE__) + "/directions/point_target"
|
52
|
+
require File.dirname(__FILE__) + "/directions/move_to"
|
53
|
+
require File.dirname(__FILE__) + "/directions/line_to"
|
54
|
+
require File.dirname(__FILE__) + "/directions/quadratic_curve_to"
|
55
|
+
require File.dirname(__FILE__) + "/directions/cubic_curve_to"
|
56
|
+
require File.dirname(__FILE__) + "/directions/arc_to"
|
@@ -0,0 +1,19 @@
|
|
1
|
+
module Savage
|
2
|
+
module DirectionProxy
|
3
|
+
def self.included(klass)
|
4
|
+
klass.extend ClassMethods
|
5
|
+
end
|
6
|
+
|
7
|
+
module ClassMethods
|
8
|
+
def define_proxies(&block)
|
9
|
+
Directions.constants.each do |constant_sym|
|
10
|
+
constant = (constant_sym.is_a?(Symbol)) ? constant_sym.to_s : constant_sym
|
11
|
+
unless %w[PointTarget CoordinateTarget Point MoveTo].include? constant
|
12
|
+
sym = constant.to_s.gsub(/[A-Z]/) { |p| '_' + p.downcase }[1..-1].to_sym
|
13
|
+
block.call(sym,constant)
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,30 @@
|
|
1
|
+
module Savage
|
2
|
+
module Directions
|
3
|
+
class ArcTo < PointTarget
|
4
|
+
attr_accessor :radius, :rotation, :large_arc, :sweep
|
5
|
+
|
6
|
+
def initialize(radius_x, radius_y, rotation, large_arc, sweep, target_x, target_y, absolute=true)
|
7
|
+
super(target_x, target_y, absolute)
|
8
|
+
@radius = Point.new(radius_x, radius_y)
|
9
|
+
@rotation = rotation
|
10
|
+
@large_arc = large_arc.is_a?(Numeric) ? large_arc > 0 : large_arc
|
11
|
+
@sweep = sweep.is_a?(Numeric) ? sweep > 0 : sweep
|
12
|
+
end
|
13
|
+
|
14
|
+
def to_a
|
15
|
+
[command_code, @radius.x, @radius.y, @rotation, bool_to_int(@large_arc), bool_to_int(@sweep), target.x, target.y]
|
16
|
+
end
|
17
|
+
|
18
|
+
def command_code
|
19
|
+
(absolute?) ? 'A' : 'a'
|
20
|
+
end
|
21
|
+
|
22
|
+
def transform(scale_x, skew_x, skew_y, scale_y, tx, ty)
|
23
|
+
# relative arc_to dont't need to be tranlated
|
24
|
+
tx = ty = 0 if relative?
|
25
|
+
transform_dot( target, scale_x, skew_x, skew_y, scale_y, tx, ty)
|
26
|
+
end
|
27
|
+
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
@@ -0,0 +1,22 @@
|
|
1
|
+
module Savage
|
2
|
+
module Directions
|
3
|
+
class ClosePath < Direction
|
4
|
+
|
5
|
+
def initialize(absolute=true)
|
6
|
+
super(absolute)
|
7
|
+
end
|
8
|
+
|
9
|
+
def to_a
|
10
|
+
[command_code]
|
11
|
+
end
|
12
|
+
|
13
|
+
def command_code
|
14
|
+
(absolute?) ? 'Z' : 'z'
|
15
|
+
end
|
16
|
+
|
17
|
+
def movement
|
18
|
+
[0, 0]
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
22
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module Savage
|
2
|
+
module Directions
|
3
|
+
class CoordinateTarget < Direction
|
4
|
+
|
5
|
+
attr_accessor :target
|
6
|
+
|
7
|
+
def initialize(target, absolute=true)
|
8
|
+
@target = target
|
9
|
+
super(absolute)
|
10
|
+
end
|
11
|
+
|
12
|
+
def to_a
|
13
|
+
[command_code, @target]
|
14
|
+
end
|
15
|
+
|
16
|
+
def fully_transformable?
|
17
|
+
false
|
18
|
+
end
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
module Savage
|
2
|
+
module Directions
|
3
|
+
class CubicCurveTo < QuadraticCurveTo
|
4
|
+
attr_accessor :control_1
|
5
|
+
|
6
|
+
def initialize(*args)
|
7
|
+
raise ArgumentError if args.length < 4
|
8
|
+
case args.length
|
9
|
+
when 4
|
10
|
+
super(args[0],args[1],args[2],args[3],true)
|
11
|
+
when 5
|
12
|
+
raise ArgumentError if args[4].kind_of?(Numeric)
|
13
|
+
super(args[0],args[1],args[2],args[3],args[4])
|
14
|
+
when 6
|
15
|
+
@control_1 = Point.new(args[0],args[1])
|
16
|
+
super(args[2],args[3],args[4],args[5],true)
|
17
|
+
when 7
|
18
|
+
@control_1 = Point.new(args[0],args[1])
|
19
|
+
super(args[2],args[3],args[4],args[5],args[6])
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def to_a
|
24
|
+
if @control_1
|
25
|
+
[command_code, @control_1.x, @control_1.y, @control.x, @control.y, @target.x, @target.y]
|
26
|
+
else
|
27
|
+
[command_code, @control.x, @control.y, @target.x, @target.y]
|
28
|
+
end
|
29
|
+
end
|
30
|
+
|
31
|
+
def control_2; @control; end
|
32
|
+
def control_2=(value); @control = value; end
|
33
|
+
|
34
|
+
def command_code
|
35
|
+
return (absolute?) ? 'C' : 'c' if @control_1
|
36
|
+
(absolute?) ? 'S' : 's'
|
37
|
+
end
|
38
|
+
|
39
|
+
def transform(scale_x, skew_x, skew_y, scale_y, tx, ty)
|
40
|
+
super
|
41
|
+
tx = ty = 0 if relative?
|
42
|
+
transform_dot( control_1, scale_x, skew_x, skew_y, scale_y, tx, ty) if control_1
|
43
|
+
end
|
44
|
+
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module Savage
|
2
|
+
module Directions
|
3
|
+
class HorizontalTo < CoordinateTarget
|
4
|
+
def command_code
|
5
|
+
(absolute?) ? 'H' : 'h'
|
6
|
+
end
|
7
|
+
|
8
|
+
def transform(scale_x, skew_x, skew_y, scale_y, tx, ty)
|
9
|
+
|
10
|
+
unless skew_y.zero?
|
11
|
+
raise 'rotating or skewing (in Y axis) an "horizontal_to" direction is not supported yet.'
|
12
|
+
end
|
13
|
+
|
14
|
+
self.target *= scale_x
|
15
|
+
self.target += tx if absolute?
|
16
|
+
end
|
17
|
+
|
18
|
+
def to_fully_transformable_dir( pen_x, pen_y )
|
19
|
+
if absolute?
|
20
|
+
LineTo.new( target, pen_y, true )
|
21
|
+
else
|
22
|
+
LineTo.new( target, 0, false )
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
def movement
|
27
|
+
[target, nil]
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module Savage
|
2
|
+
module Directions
|
3
|
+
class LineTo < PointTarget
|
4
|
+
def command_code
|
5
|
+
(absolute?) ? 'L' : 'l'
|
6
|
+
end
|
7
|
+
|
8
|
+
def transform(scale_x, skew_x, skew_y, scale_y, tx, ty)
|
9
|
+
# relative line_to dont't need to be tranlated
|
10
|
+
tx = ty = 0 if relative?
|
11
|
+
transform_dot( target, scale_x, skew_x, skew_y, scale_y, tx, ty)
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|
@@ -0,0 +1,15 @@
|
|
1
|
+
module Savage
|
2
|
+
module Directions
|
3
|
+
class MoveTo < PointTarget
|
4
|
+
def command_code
|
5
|
+
(absolute?) ? 'M' : 'm'
|
6
|
+
end
|
7
|
+
|
8
|
+
def transform(scale_x, skew_x, skew_y, scale_y, tx, ty)
|
9
|
+
# relative move_to dont't need to be tranlated
|
10
|
+
tx = ty = 0 if relative?
|
11
|
+
transform_dot( target, scale_x, skew_x, skew_y, scale_y, tx, ty )
|
12
|
+
end
|
13
|
+
end
|
14
|
+
end
|
15
|
+
end
|