Vector::Multiply Method (Vector, Matrix)
.NET Framework (current version)
Transforms the coordinate space of the specified vector using the specified Matrix.
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- vector
-
Type:
System.Windows::Vector
The vector structure to transform.
- matrix
-
Type:
System.Windows.Media::Matrix
The transformation to apply to vector.
The following example shows how to use this method to multiply a Vector by a Matrix.
private Vector multiplyVectorByMatrixExample() { Vector vector1 = new Vector(20, 30); Matrix matrix1 = new Matrix(40, 50, 60, 70, 80, 90); Vector vectorResult = new Vector(); // Multiply the vector and matrix. // vectorResult is equal to (2600,3100). vectorResult = Vector.Multiply(vector1, matrix1); return vectorResult; }
.NET Framework
Available since 3.0
Available since 3.0
Show: