class Magick::RVG::PathData

def hlineto(abs, x)

the coordinates are relative.
true the coordinates are absolute, otherwise
Add a horizontal lineto command. If abs is
def hlineto(abs, x)
    @path << sprintf('%s%g ', (abs ? 'H' : 'h'), x)
end