Class: Wicket::Commands::S

Inherits:
Wicket::Command show all
Includes:
CubicBezier
Defined in:
lib/wicket/commands/s.rb

Constant Summary collapse

ARGS =
4
ARG_LIST =
[:c2x,:c2y,:x,:y]

Instance Attribute Summary

Attributes inherited from Wicket::Command

#cursor_start, #x, #y

Instance Method Summary collapse

Methods included from CubicBezier

#c1, #c2, #control_points

Methods included from BezierCurve

#evaluate_curve, #to_svg, #to_wkt

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, c2x, c2y, x, y) ⇒ S

Returns a new instance of S.



8
9
10
11
12
13
14
15
16
17
18
# File 'lib/wicket/commands/s.rb', line 8

def initialize(absolute,cursor_start,subpath,opts,c2x,c2y,x,y)
  @absolute = absolute
  @cursor_start = cursor_start
  @subpath = subpath
  @opts = opts
  set_implicit_control_point!
  @c2x = c2x
  @c2y = c2y
  @x = x
  @y = y
end