// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.ImageSharp.Drawing {
///
/// Represents the orientation of a point from a line.
///
internal enum PointOrientation
{
///
/// The point is collinear.
///
Collinear = 0,
///
/// The point is clockwise.
///
Clockwise = 1,
///
/// The point is counter-clockwise.
///
Counterclockwise = 2
}
}