PolygonClipOperation Enumeration
Specifies the clip operations that GeometryClipper can perform on polygons.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECore assembly)
Syntax
public enum PolygonClipOperation
Values
Value name | Value | Description |
---|---|---|
Intersection | 0 | Returns the parts of a polygon that intersects another polygon. |
Difference | 1 | Returns the parts of a polygon that do not intersect another polygon. |
Union | 2 | Returns the union of two polygons. |
Xor | 3 | Returns the parts of two polygons that do not intersect the other polygon. |
Remarks
The following table demonstrates the result of one polygon against another using the available clip operations.
Clip operation | Result | |
---|---|---|
Intersection |
Returns the area that is covered by both polygons. | |
Difference |
Returns the area that covers the first polygon but not the second. | |
Union |
Returns the combined area of both polygons. | |
Xor |
Returns the area that is covered by one of the polygons but not both. |
Platforms
Windows, Linux, Android