Creates a new BezierShape given a start point, start control point, end control point and a end point
Namespace: TallComponents.PDF.ShapesAssembly: TallComponents.PDF.Kit (in TallComponents.PDF.Kit.dll) Version: 3.0.69.1
Syntax
| C# |
|---|
public BezierShape( double x0, double y0, double x1, double y1, double x2, double y2, double x3, double y3, Pen pen ) |
| Visual Basic |
|---|
Public Sub New ( _ x0 As Double, _ y0 As Double, _ x1 As Double, _ y1 As Double, _ x2 As Double, _ y2 As Double, _ x3 As Double, _ y3 As Double, _ pen As Pen _ ) |
Parameters
- x0
- Type: System..::..Double
Horizontal position of the start point.
- y0
- Type: System..::..Double
Vertical position of the start point.
- 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.
- pen
- Type: TallComponents.PDF.Pens..::..Pen
Used to draw the curves of this bezier.