File: Graphics\IShape.cs
Web Access
Project: src\src\Core\src\Core.csproj (Microsoft.Maui)
namespace Microsoft.Maui.Graphics
{
	/// <summary>
	/// Provides a base definition class for shape elements, such as
	/// Ellipse, Polygon, or Rectangle.
	/// </summary>
	public interface IShape
	{
		PathF PathForBounds(Rect bounds);
	}
 
	internal interface IRoundRectangle : IShape
	{
		PathF InnerPathForBounds(Rect bounds, float strokeThickness);
	}
}