// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using System.Collections.Generic;
namespace SixLabors.ImageSharp.Drawing {
///
/// An internal interface for shapes which are backed by
/// so we can have a fast path tessellating them.
///
internal interface IInternalPathOwner
{
///
/// Returns the rings as a readonly collection of elements.
///
/// The .
public IReadOnlyList GetRingsAsInternalPath();
}
}