Enum BooleanOperation
- Namespace
- SixLabors.PolygonClipper
- Assembly
- SixLabors.PolygonClipper.dll
Specifies the type of boolean operation to perform on polygons.
public enum BooleanOperation
Fields
Difference = 2The difference operation, which subtracts the clipping polygon from the subject polygon.
Intersection = 0The intersection operation, which results in the area common to both polygons.
Union = 1The union operation, which results in the combined area of both polygons.
Xor = 3The exclusive OR (XOR) operation, which results in the area covered by exactly one polygon, excluding the overlapping areas.