class Magick::RVG::PathData

def vlineto(abs, y)

the coordinates are relative.
true the coordinates are absolute, otherwise
Add a vertical lineto command. If abs is
def vlineto(abs, y)
  @path << sprintf('%s%g ', (abs ? 'V' : 'v'), y)
end