Vector.LengthSquared Właściwość
Definicja
Ważne
Niektóre informacje odnoszą się do produktu w wersji wstępnej, który może zostać znacząco zmodyfikowany przed wydaniem. Firma Microsoft nie udziela żadnych gwarancji, jawnych lub domniemanych, w odniesieniu do informacji podanych w tym miejscu.
Pobiera kwadrat długości tego wektora.
public:
property double LengthSquared { double get(); };
public double LengthSquared { get; }
member this.LengthSquared : double
Public ReadOnly Property LengthSquared As Double
Wartość właściwości
Kwadrat Length tego wektora.
Przykłady
W poniższym przykładzie pokazano, jak za pomocą tej właściwości uzyskać kwadrat długości wektora.
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
Uwagi
Długość wektora jest czasami określana jako jego wielkość.