Vector::Divide Method (Vector, Double)

 

Divides the specified vector by the specified scalar and returns the result as a Vector.

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

public:
static Vector Divide(
	Vector vector,
	double scalar
)

Parameters

vector
Type: System.Windows::Vector

The vector structure to divide.

scalar
Type: System::Double

The amount by which vector is divided.

Return Value

Type: System.Windows::Vector

The result of dividing vector by scalar.

The following example shows how to use this method to divide a Vector by a scalar.

private Vector divideExample()
{
    Vector vector1 = new Vector(20, 30);
    Vector vectorResult = new Vector();
    Double scalar1 = 75;

    // Divide vector by scalar.
    // vectorResult is approximately equal to (0.26667,0.4)
    vectorResult = Vector.Divide(vector1, scalar1);

    return vectorResult;

}

.NET Framework
Available since 3.0
Return to top
Show: