Vector::Multiply Method (Double, Vector)
.NET Framework (current version)
Multiplies the specified scalar by the specified vector and returns the resulting Vector.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- scalar
-
Type:
System::Double
The scalar to multiply.
- vector
-
Type:
System.Windows::Vector
The vector to multiply.
The following example shows how to use this method to multiply a scalar by a Vector.
private Vector multiplyVectorByScalarExample2() { 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(scalar1, vector1); return vectorResult; }
.NET Framework
Available since 3.0
Available since 3.0
Show: