Vector Constructor (Double, Double)

 

Initializes a new instance of the Vector structure.

Namespace:   System.Windows
Assembly:  WindowsBase (in WindowsBase.dll)

public:
Vector(
	double x,
	double y
)

Parameters

x
Type: System::Double

The X-offset of the new Vector.

y
Type: System::Double

The Y-offset of the new Vector.

The following example shows how to create two vectors and add them together.

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
Return to top
Show: