PdfPathOperationCurveTo Method

Creates a curve-to operation that appends a cubic Bezier curve segment from the current point to the specified end point, using two control points

Definition

Namespace: HiQPdf.Next
Assembly: HiQPdf.Next (in HiQPdf.Next.dll) Version: 18.9.2
C#
public static PdfPathOperation CurveTo(
	float x1,
	float y1,
	float x2,
	float y2,
	float x3,
	float y3
)

Parameters

x1  Single
The X coordinate of the first control point in points
y1  Single
The Y coordinate of the first control point in points
x2  Single
The X coordinate of the second control point in points
y2  Single
The Y coordinate of the second control point in points
x3  Single
The X coordinate of the end point in points
y3  Single
The Y coordinate of the end point in points

Return Value

PdfPathOperation
The constructed operation

See Also