Context.curveTo

Adds a cubic Bézier spline to the path from the current point to position p3 in user-space coordinates, using p1 and p2 as the control points. After this call the current point will be p3.

If there is no current point before the call to curveTo() this function will behave as if preceded by a call to moveTo(p1).

  1. void curveTo(Point!double p1, Point!double p2, Point!double p3)
    struct Context
    void
    curveTo
    (
    Point!double p1
    ,
    Point!double p2
    ,
    Point!double p3
    )
  2. void curveTo(double p1x, double p1y, double p2x, double p2y, double p3x, double p3y)

Parameters

p1 Point!double

First control point

p2 Point!double

Second control point

p3 Point!double

End of the curve

Meta