System.Types.TPoint.Add
Delphi
function Add(const Point: TPoint): TPoint;
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| function | public | System.Types.pas | System.Types | TPoint |
Description
Calculates the sum between two points.
Call the Add function to obtain the sum of two points. The X property of the result is the sum between the X value of the first TPoint object and the value of X of the second TPoint object. The Y property of the result is the sum between the Y value of the first TPoint object and the value of Y of the second TPoint object.