[]
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
Initializes a new instance of the CubicBezierTo1 class.
public CubicBezierTo1(float x1, float y1, float x2, float y2, float x3, float y3)
x1
floatThe value of X1.
y1
floatThe value of Y1.
x2
floatThe value of X2.
y2
floatThe value of Y2.
x3
floatThe value of X3.
y3
floatThe value of Y3.
The X coordinate of point 1.
public readonly float X1
The X coordinate of point 2.
public readonly float X2
The X coordinate of point 3.
public readonly float X3
The Y coordinate of point 1.
public readonly float Y1
The Y coordinate of point 2.
public readonly float Y2
The Y coordinate of point 3.
public readonly float Y3
Gets the operator's description.
public override string Desc { get; }
Gets the operator's PDF name.
public override string Name { get; }
Determines whether the provided operator is the same as the current operator.
public override bool IsSame(OperatorBase other)
other
OperatorBaseA OperatorBase object.
true if the provided operator is the same as the current operator; otherwise, false.