Point.Multiply(Point, Matrix) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public:
static System::Windows::Point Multiply(System::Windows::Point point, System::Windows::Media::Matrix matrix);
public static System.Windows.Point Multiply (System.Windows.Point point, System.Windows.Media.Matrix matrix);
static member Multiply : System.Windows.Point * System.Windows.Media.Matrix -> System.Windows.Point
Public Shared Function Multiply (point As Point, matrix As Matrix) As Point
Parameters
- point
- Point
The point to transform.
- matrix
- Matrix
The transformation matrix.
Returns
The transformed point.
Examples
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;
}
Applies to
See also
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.