Table of Contents

Enum BooleanOperation

Namespace
SixLabors.PolygonClipper
Assembly
SixLabors.PolygonClipper.dll

Specifies the type of boolean operation to perform on polygons.

public enum BooleanOperation

Fields

Difference = 2

The difference operation, which subtracts the clipping polygon from the subject polygon.

Intersection = 0

The intersection operation, which results in the area common to both polygons.

Union = 1

The union operation, which results in the combined area of both polygons.

Xor = 3

The exclusive OR (XOR) operation, which results in the area covered by exactly one polygon, excluding the overlapping areas.