class Magick::RVG::Path

def initialize(path)

Use the RVG::ShapeConstructors#path method to create Path objects in a container.
or a PathData object.
Define an SVG path. The argument can be either a path string
def initialize(path)
    super()
    @primitive = :path
    @args = [path.to_s]
end