Vector::Add Method (Vector, Vector)
.NET Framework (current version)
Adds two vectors and returns the result as a Vector structure.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- vector1
-
Type:
System.Windows::Vector
The first vector to add.
- vector2
-
Type:
System.Windows::Vector
The second vector to add.
The following example shows how to use this method to add two Vector structures.
private Vector addTwoVectorsExample() { // Create two Vector structures. Vector vector1 = new Vector(20, 30); Vector vector2 = new Vector(45, 70); Vector vectorResult = new Vector(); // Add the vectors together. // vectorResult is equal to (65, 100). vectorResult = Vector.Add(vector1, vector2); return vectorResult; }
.NET Framework
Available since 3.0
Available since 3.0
Show: