Constructor BezierShape

Namespace TallComponents.PDF.Shapes
Class BezierShape

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

Syntax

public  BezierShape( Double  x0 Double  y0 Double  x1 Double  y1 Double  x2 Double  y2 Double  x3 Double  y3 Pen  pen )

Parameters


Double x0
Horizontal position of the start point.

Double y0
Vertical position of the start point.

Double x1
Horizontal position of the start control point.

Double y1
Vertical position of the start control point.

Double x2
Horizontal position of the end control point.

Double y2
Vertical position of the end control point.

Double x3
Horizontal position of the end point.

Double y3
Vertical position of the end point.

Pen pen
Used to draw the curves of this bezier.