File: IPattern.cs
Web Access
Project: src\src\Graphics\src\Graphics\Graphics.csproj (Microsoft.Maui.Graphics)
namespace Microsoft.Maui.Graphics
{
	public interface IPattern
	{
		float Width { get; }
		float Height { get; }
		float StepX { get; }
		float StepY { get; }
		void Draw(ICanvas canvas);
	}
}