Vector3D.LengthSquared Propiedad
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Obtiene el cuadrado de la longitud de esta estructura Vector3D.
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 la longitud de esta estructura Vector3D.
Ejemplos
En el ejemplo siguiente se muestra cómo obtener el cuadrado de la longitud de una Vector3D estructura.
// Gets the square of the length of a Vector3D.
// Returns a Vector3D.
Vector3D vector1 = new Vector3D(20, 30, 40);
Double lengthSq;
lengthSq = vector1.LengthSquared;
// lengthSq is equal to 2900
' Gets the square of the length of a Vector3D.
' Returns a Vector3D.
Dim vector1 As New Vector3D(20, 30, 40)
Dim lengthSq As Double
lengthSq = vector1.LengthSquared
' lengthSq is equal to 2900
Comentarios
A veces, la longitud de un Vector3D objeto se conoce como magnitud.