[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
A 2D Bézier segment
Source position: fpvectorial.pas line 121
type T2DBezierSegment = class(T2DSegment) |
||
public |
||
X2: Double; |
|
The X coodinate of the first control point of the Bézier |
Y2: Double; |
|
The Y coodinate of the first control point of the Bézier |
X3: Double; |
|
The X coodinate of the second control point of the Bézier |
Y3: Double; |
|
The Y coodinate of the second control point of the Bézier |
end; |
|
A 2D Bézier segment |
|
| | ||
|
A generic 2D segment |
|
| | ||
|
A generic path segment |
|
| | ||
TObject |
In Bezier segments, we remain using the X and Y coordinates for the ending point. The starting point is where the previous segment ended, so that the intermediary bezier control points are [X2, Y2] and [X3, Y3].