[]
PDF "c" operator. Append a cubic Bezier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using (x1, y1 ) and (x2, y2 ) as the Bezier control points.
public class CubicBezierTo1 : OperatorBase
Public Class CubicBezierTo1
Inherits OperatorBase
Name | Description |
---|---|
CubicBezierTo1(float, float, float, float, float, float) | Initializes a new instance of the CubicBezierTo1 class. |
Name | Description |
---|---|
X1 | The X coordinate of point 1. |
X2 | The X coordinate of point 2. |
X3 | The X coordinate of point 3. |
Y1 | The Y coordinate of point 1. |
Y2 | The Y coordinate of point 2. |
Y3 | The Y coordinate of point 3. |
Name | Description |
---|---|
IsSame(OperatorBase) | Determines whether the provided operator is the same as the current operator. |