[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'Graphics' (#lcl)

TCanvas.PolyBezier

Polybezier draws cubic Bézier curves.

Declaration

Source position: graphics.pp line 1141

public procedure TCanvas.PolyBezier(

  Points: PPoint;

  NumPts: Integer;

  Filled: Boolean = False;

  Continuous: Boolean = True

); virtual;

procedure TCanvas.PolyBezier(

  const Points: array of TPoint;

  Filled: Boolean = False;

  Continuous: Boolean = True

);

Description

Use Polybezier to draw cubic Bézier curves.

The first curve is drawn from the first point to the fourth point with the second and third points being the control points.

If the Continuous flag is True then each subsequent curve requires three more points, using the end-point of the previous Curve as its starting point, the first and second points being used as its control points, and the third point its end-point.

If the Continuous flag is set to False, then each subsequent curve requires 4 additional points, which are used exactly as in the first curve.

If the Filled flag is set to True then a straight line is drawn from the last connected point to the starting point, and the entire curve is filled with the current brush.

Any additional points which do not add up to a full Bézier (4 for Continuous, 3 otherwise) are ignored. There must be at least 4 points to be connected.


Version 3.2 Generated 2024-02-25 Home