Vector3D.X プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
public:
property double X { double get(); void set(double value); };
public double X { get; set; }
member this.X : double with get, set
Public Property X As Double
プロパティ値
この Vector3D 構造体の X コンポーネント。 既定値は 0
です。
例
次の例は、2 つの Vector3D 構造体のドット積を計算する方法を示しています。 また、構造体が宣言されているときに、および構造体が宣言された後に、構造体に値 Vector3D を割り当てる方法も示します。
// Calculates the Dot Product of two Vectors.
// Declaring vector1 and initializing x,y,z values
Vector3D vector1 = new Vector3D(20, 30, 40);
// Declaring vector2 without initializing x,y,z values
Vector3D vector2 = new Vector3D();
// A Double to hold the result of the operation
Double dotProduct;
// Assigning values to vector2
vector2.X = 45;
vector2.Y = 70;
vector2.Z = 80;
// Calculating the dot product of vector1 and vector2
dotProduct = Vector3D.DotProduct(vector1, vector2);
// vectorResult is equal to (6200)
' Calculates the Dot Product of two Vectors.
' Declaring vector1 and initializing x,y,z values
Dim vector1 As New Vector3D(20, 30, 40)
' Declaring vector2 without initializing x,y,z values
Dim vector2 As New Vector3D()
' A Double to hold the result of the operation
Dim dotProduct As Double
' Assigning values to vector2
vector2.X = 45
vector2.Y = 70
vector2.Z = 80
' Calculating the dot product of vector1 and vector2
dotProduct = Vector3D.DotProduct(vector1, vector2)
' vectorResult is equal to (6200)