Vector.Subtract(Vector, Vector) Method

Definition

Subtracts the specified vector from another specified vector.

public static System.Windows.Vector Subtract (System.Windows.Vector vector1, System.Windows.Vector vector2);

Parameters

vector1
Vector

The vector from which vector2 is subtracted.

vector2
Vector

The vector to subtract from vector1.

Returns

The difference between vector1 and vector2.

Examples

The following example shows how to use this method to subtract a Vector structure from a Vector structure.

private Vector subtractExample()
{

    Vector vector1 = new Vector(20, 30);
    Vector vector2 = new Vector(45, 70);

    // Subtract vector2 from vector1.
    // vectorResult is equal to (-25, -40)
    Vector vectorResult = Vector.Subtract(vector1, vector2);

    return vectorResult;
}

Applies to

Producto Versiones
.NET Framework 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9

See also