SkiaSharp.SKPaint.GetFillPath C# (CSharp) Method

GetFillPath() public method

public GetFillPath ( SKPath src, SKPath dst, SKRect cullRect, float resScale = 1 ) : bool
src SKPath
dst SKPath
cullRect SKRect
resScale float
return bool
		public bool GetFillPath(SKPath src, SKPath dst, SKRect cullRect, float resScale = 1)
		{
			if (src == null)
				throw new ArgumentNullException(nameof(src));
			if (dst == null)
				throw new ArgumentNullException(nameof(dst));
			return SkiaApi.sk_paint_get_fill_path(Handle, src.Handle, dst.Handle, ref cullRect, resScale);
		}

Same methods

SKPaint::GetFillPath ( SKPath src, SKPath dst, float resScale = 1 ) : bool