Creates a new BezierShape given a start control point, end control point and an end point

Namespace: TallComponents.PDF.Layout.Shapes
Assembly: TallComponents.PDF.Layout (in TallComponents.PDF.Layout.dll) Version: 3.0.63.0

Syntax

C#
public FreeHandBezierSegment(
	double x1,
	double y1,
	double x2,
	double y2,
	double x3,
	double y3
)
Visual Basic
Public Sub New ( _
	x1 As Double, _
	y1 As Double, _
	x2 As Double, _
	y2 As Double, _
	x3 As Double, _
	y3 As Double _
)

Parameters

x1
Type: System..::..Double
Horizontal position of the start control point.
y1
Type: System..::..Double
Vertical position of the start control point.
x2
Type: System..::..Double
Horizontal position of the end control point.
y2
Type: System..::..Double
Vertical position of the end control point.
x3
Type: System..::..Double
Horizontal position of the end point.
y3
Type: System..::..Double
Vertical position of the end point.

See Also