Vector.LengthSquared Propiedad

Definición

Obtiene el cuadrado de la longitud de este vector.

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

Valor de propiedad

Cuadrado de Length de este vector.

Ejemplos

En el ejemplo siguiente se muestra cómo usar esta propiedad para obtener el cuadrado de la longitud de un vector.

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

Comentarios

La longitud de un vector se conoce a veces como su magnitud.

Se aplica a