Method: Magick::RVG::ShapeConstructors#path
- Defined in:
- lib/rvg/embellishable.rb
permalink #path(path) ⇒ Object
Draws a path defined by an SVG path string or a PathData object.
287 288 289 290 291 |
# File 'lib/rvg/embellishable.rb', line 287 def path(path) path = Path.new(path) @content << path return path end |