Vector::Multiply Method (Vector, Double)
.NET Framework (current version)
Multiplies the specified vector by the specified scalar and returns the resulting Vector.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- vector
-
Type:
System.Windows::Vector
The vector to multiply.
- scalar
-
Type:
System::Double
The scalar to multiply.
The following example shows how to use this method to multiply a Vector by a scalar.
private Vector multiplyVectorByScalarExample1() { Vector vector1 = new Vector(20, 30); Double scalar1 = 75; Vector vectorResult = new Vector(); // Multiply the vector by the scalar. // vectorResult is equal to (1500,2250) vectorResult = Vector.Multiply(vector1, scalar1); return vectorResult; }
.NET Framework
Available since 3.0
Available since 3.0
Show: