Sdílet prostřednictvím


Vector3D.Negate Metoda

Definice

Neguje Vector3D strukturu.

public:
 void Negate();
public void Negate ();
member this.Negate : unit -> unit
Public Sub Negate ()

Příklady

Následující příklad ukazuje, jak negovat Vector3D strukturu.

// Negates a Vector3D using the Negate method.

Vector3D vector1 = new Vector3D(20, 30, 40);
Vector3D vectorResult = new Vector3D();

vector1.Negate();
// vector1 is equal to (-20, -30, -40)
' Negates a Vector3D using the Negate method.

Dim vector1 As New Vector3D(20, 30, 40)
Dim vectorResult As New Vector3D()

vector1.Negate()
' vector1 is equal to (-20, -30, -40)

Poznámky

Vektor má stejnou velikost jako předtím, ale jeho směr je teď opačný.

Platí pro

Viz také