// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.ImageSharp.Drawing {
///
/// An interface for internal operations we don't want to expose on .
///
internal interface IPathInternals : IPath
{
///
/// Returns information about a point at a given distance along a path.
///
/// The distance along the path to return details for.
///
/// The segment information.
///
SegmentInfo PointAlongPath(float distance);
}
}