Generic function
Draws a curve through three specified points in the current path on the specified drawable.
curve-to drawable x1 y1 x2 y2 x3 y3 => ()
curve-to* drawable point1 point2 point3 => ()
The following arguments are specific to curve-to.
<real>.
<real>.
<real>.
<real>.
<real>.
<real>.
The following arguments are specific to curve-to*.
<transform>.
<transform>.
<transform>.
duim-graphics
duim-graphics
Draws a curve in the current path on drawable starting from the current position, and passing through (x1,y1), (x2, y2), and (x3, y3).
This function is used, in combination with line-to, move-to, and arc-to, to define a path. The function start-path should be used to start the definition of the path, and end-path can be used to finish the definition.
The function curve-to* is identical to curve-to, except that it passes composite objects, rather than separate coordinates, in its arguments. You should be aware that using this function may lead to a loss of performance.