// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
using System;
namespace SixLabors.ImageSharp.Drawing {
///
/// Represents a simple (non-composite) path defined by a series of points.
///
public interface ISimplePath
{
///
/// Gets a value indicating whether this instance is a closed path.
///
public bool IsClosed { get; }
///
/// Gets the points that make this up as a simple linear path.
///
public ReadOnlyMemory Points { get; }
}
}