Vector::Divide Method (Vector, Double)
.NET Framework (current version)
Divides the specified vector by the specified scalar and returns the result as a Vector.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- vector
-
Type:
System.Windows::Vector
The vector structure to divide.
- scalar
-
Type:
System::Double
The amount by which vector is divided.
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
Available since 3.0
Show: