# File lib/pdf/writer/graphics.rb, line 198
198:   def curve(x0, y0, x1, y1, x2, y2, x3, y3)
199:     move_to(x0, y0).curve_to(x1, y1, x2, y2, x3, y3)
200:   end