//
// Copyright (c) James Jackson-South and contributors.
// Licensed under the Apache License, Version 2.0.
//
namespace ImageSharp.Drawing.Processors
{
using System;
using System.Numerics;
///
/// 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;
///
/// The search point
///
public Vector2 SearchPoint;
}
}