Description Usage Arguments Details Author(s)
Adds a cubic B<U+00E9>zier spline to the path from the current point to
position (x3
, y3
) in user-space coordinates, using (x1
, y1
) and
(x2
, y2
) as the control points. After this call the current point
will be (x3
, y3
).
1 | cairoCurveTo(cr, x1, y1, x2, y2, x3, y3)
|
|
[ |
|
[numeric] the X coordinate of the first control point |
|
[numeric] the Y coordinate of the first control point |
|
[numeric] the X coordinate of the second control point |
|
[numeric] the Y coordinate of the second control point |
|
[numeric] the X coordinate of the end of the curve |
|
[numeric] the Y coordinate of the end of the curve |
If there is no current point before the call to cairoCurveTo
this function will behave as if preceded by a call to
cairo_move_to(cr
, x1
, y1
).
Derived by RGtkGen from GTK+ documentation
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.