Vector3D.Length Свойство

Определение

Получает длину этой структуры Vector3D.

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

Значение свойства

Double

Длина этой структуры Vector3D.

Примеры

В следующем примере показано, как получить длину Vector3D структуры.

// 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

Комментарии

Длина а Vector3D иногда называется величиной.

Применяется к