[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.Operators.CubicBezierTo3

Class CubicBezierTo3

Namespace
GrapeCity.Documents.Pdf.Operators
Assembly
GcDocs.Pdf.dll

PDF "y" 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 (x3, y3 ) as the Bezier control points.

public class CubicBezierTo3 : OperatorBase
Inheritance
object
CubicBezierTo3
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Constructors

CubicBezierTo3(float, float, float, float)

Initializes a new instance of the CubicBezierTo1 class.

public CubicBezierTo3(float x1, float y1, float x3, float y3)

Parameters

x1 float

The value of X1.

y1 float

The value of Y1.

x3 float

The value of X3.

y3 float

The value of Y3.

Fields

X1

The X coordinate of point 1.

public readonly float X1

Field Value

float

X3

The X coordinate of point 3.

public readonly float X3

Field Value

float

Y1

The Y coordinate of point 1.

public readonly float Y1

Field Value

float

Y3

The Y coordinate of point 3.

public readonly float Y3

Field Value

float

Properties

Desc

Gets the operator's description.

public override string Desc { get; }

Property Value

string

Name

Gets the operator's PDF name.

public override string Name { get; }

Property Value

string

Methods

IsSame(OperatorBase)

Determines whether the provided operator is the same as the current operator.

public override bool IsSame(OperatorBase other)

Parameters

other OperatorBase

A OperatorBase object.

Returns

bool

true if the provided operator is the same as the current operator; otherwise, false.