SKMatrix.MapVector 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
MapVector(SKPoint) | |
MapVector(Single, Single) |
Applies the matrix to a vector, ignoring translation. |
MapVector(SKPoint)
MapVector(Single, Single)
Applies the matrix to a vector, ignoring translation.
public SkiaSharp.SKPoint MapVector (float x, float y);
public readonly SkiaSharp.SKPoint MapVector (float x, float y);
Parameters
- x
- Single
The x-component of the vector.
- y
- Single
The y-component of the vector.
Returns
Returns the mapped point.
Remarks
Mapping vectors ignores the translation component in the matrix. Use SkiaSharp.SKMatrix.MapXY(System.Single,System.Single) to take the translation into consideration.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.