// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.PolygonClipper {
///
/// Describes the relationship between a point and a polygon.
///
internal enum PointInPolygonResult
{
///
/// The point lies on the polygon boundary.
///
On = 0,
///
/// The point lies strictly inside the polygon.
///
Inside = 1,
///
/// The point lies outside the polygon.
///
Outside = 2
}
}