Weak to strong: | (OR), ^ (XOR), & (AND), - (difference). + is the same as |. The result is always polygons, even if an operand was edges (those are turned into polygons first). An empty operand: AND/OR/XOR with empty is empty; A - empty is A; empty - A is empty. a & b connected / not_connected keeps only result pieces whose A-shape and B-shape sit on the same (connected) or a different (not_connected) geometric net of a|b (touch/overlap = one net).
a | bAvailable · yields polygons
layer u = a | b
Geometric union (OR). Overlap becomes one area. Alias a + b.
Also written as: a + b
Notes
merged.(a | b) | c. Chains of | associate to the left.a & bAvailable · yields polygons
layer i = a & b
Intersection (AND). Only area that lies in A and B.
Notes
a - bAvailable · yields polygons
layer d = a - b
Difference: A without B. Can split A into several polygons or into a polygon with a hole.
Notes
a ^ bAvailable · yields polygons
layer x = a ^ b
XOR: area in exactly one of the two layers. Equivalent to (a - b) | (b - a).
Notes
merged.