Click or drag to resize

PdfPathCurveTo Method (Double, Double, Double, Double, Double, Double)

Curves to the destination point from the previous point using the (x1, y1) as the source control point, (x2, y2) as the destination control point and (x3, y3) as the destination point to render the curve

Namespace:  Atalasoft.PdfDoc.Generating.Shapes
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public PdfPath CurveTo(
	double x1,
	double y1,
	double x2,
	double y2,
	double x3,
	double y3
)

Parameters

x1
Type: SystemDouble
The x coordinate of the source control point
y1
Type: SystemDouble
The y coordinate of the source control point.
x2
Type: SystemDouble
The x coordinate of the destination control point.
y2
Type: SystemDouble
The y coordinate of the destination control point.
x3
Type: SystemDouble
The x coordinate of the destination point.
y3
Type: SystemDouble
The y coordinate of the destination point.

Return Value

Type: PdfPath
The current path object.
See Also