[]
PDF "v" operator. Append a cubic Bezier curve to the current path. The curve shall extend from the current point to the point (x3, y3), using the current point and (x2, y2) as the Bezier control points.
public class CubicBezierTo2 : OperatorBase
Initializes a new instance of the CubicBezierTo2 class.
public CubicBezierTo2(float x2, float y2, float x3, float y3)
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 2.
public readonly float X2
The X coordinate of point 3.
public readonly float X3
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.