Vector.LengthSquared プロパティ

定義

このベクターの長さの四角形を取得します。

public:
 property double LengthSquared { double get(); };
public double LengthSquared { get; }
member this.LengthSquared : double
Public ReadOnly Property LengthSquared As Double

プロパティ値

Double

このベクターの Length の四角形。

次の例は、このプロパティを使用してベクターの長さの 2 乗を取得する方法を示しています。

private Double lengthSquaredExample()
{

    Vector vector1 = new Vector(20, 30); 

    // Gets the square of the length of a Vector. 
    // lengthSq is equal to 1300.
    Double lengthSqResult = vector1.LengthSquared;

    return lengthSqResult;
}
Private Function lengthSquaredExample() As Double

    Dim vector1 As New Vector(20, 30)

    ' Gets the square of the length of a Vector. 
    ' lengthSq is equal to 1300.
    Dim lengthSqResult As Double = vector1.LengthSquared

    Return lengthSqResult

End Function

注釈

ベクトルの長さは、その大きさと呼ばれることもあります。

適用対象