// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.ImageSharp.Drawing { /// public enum BooleanOperation { /// Intersection = 0, /// Union = 1, /// Difference = 2, /// Xor = 3 } }