Vector::Add Method (Vector, Point)
.NET Framework (current version)
Translates the specified point by the specified vector and returns the resulting point.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- vector
-
Type:
System.Windows::Vector
The amount to translate the specified point.
- point
-
Type:
System.Windows::Point
The point to translate.
The following example shows how to use this method to add a Point structure to a Vector structure.
private Point addPointAndVectorExample() { Vector vector1 = new Vector(20, 30); Point point1 = new Point(10, 5); Point pointResult = new Point(); // Add Point and Vector together. // pointResult is equal to (30,35). pointResult = Vector.Add(vector1, point1); return pointResult; }
.NET Framework
Available since 3.0
Available since 3.0
Show: