Class: Wicket::Commands::M
- Inherits:
-
Wicket::Command
- Object
- Wicket::Command
- Wicket::Commands::M
- Defined in:
- lib/wicket/commands/m.rb
Constant Summary collapse
- ARGS =
2
- ARG_LIST =
[:x,:y]
Instance Attribute Summary
Attributes inherited from Wicket::Command
Instance Method Summary collapse
-
#initialize(absolute, cursor_start, subpath, opts, x, y) ⇒ M
constructor
A new instance of M.
Methods inherited from Wicket::Command
#absolute_x, #absolute_y, #arguments, #cursor_end, from_code, #subpath=, #to_svg, #to_wkt
Constructor Details
#initialize(absolute, cursor_start, subpath, opts, x, y) ⇒ M
Returns a new instance of M.
7 8 9 10 11 12 13 14 |
# File 'lib/wicket/commands/m.rb', line 7 def initialize(absolute,cursor_start,subpath,opts,x,y) @absolute = absolute @cursor_start = cursor_start @subpath = subpath @opts = opts @x = x @y = y end |