Vector.Negate Méthode

Définition

Nie ce vecteur. Le vecteur conserve la même grandeur, mais avec une direction opposée.

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

Exemples

L’exemple suivant montre comment utiliser cette méthode pour nier un vecteur.

private Vector negateExample()
{
    Vector vectorResult = new Vector(20, 30);

    // Make the direction of the Vector opposite but
    // leave the vector magnitude the same.
    // vectorResult is equal to (-20, -30)
    vectorResult.Negate();

    return vectorResult;
}

S’applique à

Voir aussi