// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.PolygonClipper {
///
/// Indicates whether an active edge should be joined with a neighbor after a split.
///
internal enum JoinWith
{
///
/// No pending join.
///
None,
///
/// Join with the left neighbor in the AEL.
///
Left,
///
/// Join with the right neighbor in the AEL.
///
Right
}
}