Vector3D.Length プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この Vector3D 構造体の長さを取得します。
public:
property double Length { double get(); };
public double Length { get; }
member this.Length : double
Public ReadOnly Property Length As Double
プロパティ値
この Vector3D 構造体の長さ。
例
次の例は、構造体の長さを取得する方法を Vector3D 示しています。
// Gets the length of a Vector3D.
// Returns a Double.
Vector3D vector1 = new Vector3D(20, 30, 40);
Double length;
length = vector1.Length;
// length is approximately equal to 53.85165
' Gets the length of a Vector3D.
' Returns a Double.
Dim vector1 As New Vector3D(20, 30, 40)
Dim length As Double
length = vector1.Length
' length is approximately equal to 53.85165
注釈
a Vector3D の長さは、大きさと呼ばれることもあります。