Vector.Negate, méthode
.NET Framework 3.0
Negates this vector.
Espace de noms: System.Windows
Assembly : WindowsBase (dans windowsbase.dll)
Assembly : WindowsBase (dans windowsbase.dll)
The following example shows how to use this method to negate a vector.
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; }