Method: Svgcode::SVG::Command#absolute!

Defined in:
lib/svgcode/svg/command.rb

#absolute!(pos) ⇒ Object



52
53
54
55
56
57
# File 'lib/svgcode/svg/command.rb', line 52

def absolute!(pos)
  if relative?
    @points.collect! { |p| p + pos }
    @absolute = true
  end
end