System.Math.Vectors.TPoint3D.operator Subtraction

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class operator Subtract(const APoint1, APoint2: TPoint3D): TPoint3D;

Properties

Type Visibility Source Unit Parent
function public System.Math.Vectors.pas System.Math.Vectors TPoint3D

Description

Calculates the difference between two TPoint3D objects.

The X property of the result is the difference between the X value of the first TPoint3D and the value of X of the second TPoint3D.

The Y property of the result is the difference between the Y value of the first TPoint3D and the value of Y of the second TPoint3D.

The Z property of the result is the difference between the Z value of the first TPoint3D and the value of Z of the second TPoint3D.

See Also