Op
public enum Op : UInt32
The logical operations that can be performed when combining two paths
-
subtract the op path from the first path
Declaration
Swift
case difference = 0
-
intersect the two paths
Declaration
Swift
case intersect = 1
-
union (inclusive-or) the two paths
Declaration
Swift
case union = 2
-
exclusive-or the two paths
Declaration
Swift
case xor = 3
-
subtract the first path from the op path
Declaration
Swift
case reverseDifference = 4