SkiaSharp.SKMatrix.MapPoint C# (CSharp) Method

MapPoint() public method

public MapPoint ( float x, float y ) : SKPoint
x float
y float
return SKPoint
        public SKPoint MapPoint(float x, float y)
        {
            SKPoint result;
            SkiaApi.sk_matrix_map_xy(ref this, x, y, out result);
            return result;
        }

Same methods

SKMatrix::MapPoint ( SKPoint point ) : SKPoint