Point::Multiply Method (Point, Matrix)
.NET Framework (current version)
Namespace:
System.Windows
Assembly: WindowsBase (in WindowsBase.dll)
Return to top
Assembly: WindowsBase (in WindowsBase.dll)
Parameters
- point
-
Type:
System.Windows::Point
The point to transform.
- matrix
-
Type:
System.Windows.Media::Matrix
The transformation matrix.
The following example shows how to multiply a Point structure by a Matrix structure using the Multiply method.
private Point multiplyPointByMatrixExample() { Point point1 = new Point(10, 5); Matrix matrix1 = new Matrix(40, 50, 60, 70, 80, 90); // Multiplies a Point by a Matrix. // pointResult is equal to (780,940). Point pointResult = Point.Multiply(point1, matrix1); return pointResult; }
.NET Framework
Available since 3.0
Available since 3.0
Show: