SKMatrix.MapVector Method

Definition

Overloads

MapVector(SKPoint)
MapVector(Single, Single)

Applies the matrix to a vector, ignoring translation.

MapVector(SKPoint)

public readonly SkiaSharp.SKPoint MapVector (SkiaSharp.SKPoint vector);

Parameters

vector
SKPoint

Returns

Applies to

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