[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.Operators.CubicBezierTo1

Class CubicBezierTo1

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

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
Inheritance
object
CubicBezierTo1
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()

Constructors

CubicBezierTo1(float, float, float, float, float, float)

Initializes a new instance of the CubicBezierTo1 class.

public CubicBezierTo1(float x1, float y1, float x2, float y2, float x3, float y3)

Parameters

x1 float

The value of X1.

y1 float

The value of Y1.

x2 float

The value of X2.

y2 float

The value of Y2.

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

X2

The X coordinate of point 2.

public readonly float X2

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

Y2

The Y coordinate of point 2.

public readonly float Y2

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.