Important: The information in this document is obsolete and should not be used for new development.
AddPt
To add the coordinates of two points, use theAddPt
procedure.
PROCEDURE AddPt (srcPt: Point; VAR dstPt:\xDDPoint);
srcPt
- A point, the coordinates of which are to be added to the point in the
dstPt
parameter.dstPt
- On input: a point, the coordinates of which are to be added to the point in the
srcPt
parameter. Upon completion: the result of adding the coordinates of the points in thesrcPt
anddstPt
parameters.DESCRIPTION
TheAddPt
procedure adds the coordinates of the point specified in thesrcPt
parameter to the coordinates of the point specified in thedstPt
parameter, and returns the result in thedstPt
parameter.