Vector3D.LengthSquared Proprietà
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Ottiene il quadrato della lunghezza di questa Vector3D struttura.
public:
property double LengthSquared { double get(); };
public double LengthSquared { get; }
member this.LengthSquared : double
Public ReadOnly Property LengthSquared As Double
Valore della proprietà
Quadrato della lunghezza di questa Vector3D struttura.
Esempio
Nell'esempio seguente viene illustrato come ottenere il quadrato della lunghezza di una Vector3D struttura.
// 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
Commenti
La lunghezza di un Vector3D oggetto viene talvolta definita grandezza.