Matrix.Transform 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.
Overloads
| Name | Description |
|---|---|
| Transform(Point) |
Transforms the specified point by this matrix and returns the result. |
| Transform(Point[]) |
Transforms the specified array of points by this matrix. |
Transform(Point)
- Source:
- Matrix.cs
- Source:
- Matrix.cs
- Source:
- Matrix.cs
- Source:
- Matrix.cs
Transforms the specified point by this matrix and returns the result.
public:
Microsoft::Maui::Graphics::Point Transform(Microsoft::Maui::Graphics::Point point);
public Microsoft.Maui.Graphics.Point Transform(Microsoft.Maui.Graphics.Point point);
member this.Transform : Microsoft.Maui.Graphics.Point -> Microsoft.Maui.Graphics.Point
Public Function Transform (point As Point) As Point
Parameters
- point
- Point
The point to transform.
Returns
The transformed point.
Applies to
Transform(Point[])
- Source:
- Matrix.cs
- Source:
- Matrix.cs
- Source:
- Matrix.cs
- Source:
- Matrix.cs
Transforms the specified array of points by this matrix.
public:
void Transform(cli::array <Microsoft::Maui::Graphics::Point> ^ points);
public void Transform(Microsoft.Maui.Graphics.Point[] points);
member this.Transform : Microsoft.Maui.Graphics.Point[] -> unit
Public Sub Transform (points As Point())
Parameters
- points
- Point[]
The array of points to transform.