Vector3D.Length 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 la lunghezza della struttura Vector3D.
public:
property double Length { double get(); };
public double Length { get; }
member this.Length : double
Public ReadOnly Property Length As Double
Valore della proprietà
Lunghezza della struttura Vector3D.
Esempio
Nell'esempio seguente viene illustrato come ottenere la lunghezza di una Vector3D struttura.
// Gets the length of a Vector3D.
// Returns a Double.
Vector3D vector1 = new Vector3D(20, 30, 40);
Double length;
length = vector1.Length;
// length is approximately equal to 53.85165
' Gets the length of a Vector3D.
' Returns a Double.
Dim vector1 As New Vector3D(20, 30, 40)
Dim length As Double
length = vector1.Length
' length is approximately equal to 53.85165
Commenti
La lunghezza di un oggetto Vector3D viene talvolta definita grandezza.