// Copyright (c) Six Labors and contributors.
// Licensed under the Apache License, Version 2.0.
namespace SixLabors.ImageSharp.Drawing
{
///
/// Returns details about how far away from the inside of a shape and the color the pixel could be.
///
public struct PointInfo
{
///
/// The distance along path
///
public float DistanceAlongPath;
///
/// The distance from path
///
public float DistanceFromPath;
}
}