System.Math.Vectors.TPoint3D.operator Multiply

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

class operator Multiply(const APoint1, APoint2: TPoint3D): TPoint3D;
class operator Multiply(const APoint: TPoint3D; const AFactor: Single): TPoint3D; inline;
class operator Multiply(const AFactor: Single; const APoint: TPoint3D): TPoint3D; inline;

Properties

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

Description

Multiplies the values of two points.

Call Multiply to calculate the multiplication result between two points. The X property of the result is the multiplication between the X value of the first TPoint3D object and the value of X of the second TPoint3D object. The Y property of the result is the multiplication between the Y value of the first TPoint3D object and the value of Y of the second TPoint3D object. The Z property of the result is the multiplication between the Z value of the first TPoint3D object and the value of Z of the second TPoint3D object.

See Also