// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.PolygonClipper { /// /// Specifies the type of a polygon in a boolean operation. /// internal enum PolygonType { /// /// Represents the subject polygon in a boolean operation. /// Subject = 0, /// /// Represents the clipping polygon in a boolean operation. /// Clipping = 1 } }