// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.PolygonClipper { /// /// Represents the result transition for a sweep event. /// public enum ResultTransition { /// /// The event does not contribute to the result. /// NonContributing = -1, /// /// The event transitions within the result. /// Neutral = 0, /// /// The event contributes to the result. /// Contributing = 1 } }