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