System.Math.Vectors.TPoint3D.operator Multiply

提供: RAD Studio API Documentation
移動先: 案内検索

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;

プロパティ

種類 可視性 ソース ユニット
function public System.Math.Vectors.pas System.Math.Vectors TPoint3D

説明

2 つの点の値を乗算します。

Multiply を呼び出すと、2 つの点の乗算の結果を計算します。 結果の X プロパティは、1 つ目の TPoint3D オブジェクトの X 値と、2 つ目の TPoint3D オブジェクトの X 値との乗算の結果です。 結果の Y プロパティは、1 つ目の TPoint3D オブジェクトの Y 値と、2 つ目の TPoint3D オブジェクトの Y 値との乗算の結果です。 結果の Z プロパティは、1 つ目の TPoint3D オブジェクトの Z 値と、2 つ目の TPoint3D オブジェクトの Z 値との乗算の結果です。

関連項目