System.Types.TPointF.operator Addition
Delphi
class operator Add(const APoint1, APoint2: TPointF): TPointF;
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
function | public | System.Types.pas | System.Types | TPointF |
Description
Calculates the sum between two points.
Call Addition to calculate the sum between two points. The X property of the result is the sum between the X
value of the first TPointF object and the value of X
of the second TPointF object. The Y property of the result is the sum between the Y
value of the first TPointF object and the value of Y
of the second TPointF object.