Method: GR.drawpath
- Defined in:
- lib/gr.rb
.drawpath(points, codes, fill) ⇒ Object
Draw simple and compound outlines consisting of line segments and bezier curves.
1731 1732 1733 1734 |
# File 'lib/gr.rb', line 1731 def drawpath(points, codes, fill) len = codes.length super(len, points, uint8(codes), fill) end |