// Copyright (c) Six Labors. // Licensed under the Six Labors Split License. namespace SixLabors.ImageSharp.Drawing { /// /// Describes the different type of paths. /// public enum PathTypes { /// /// Denotes a path containing a single simple open path /// Open, /// /// Denotes a path describing a single simple closed shape /// Closed, /// /// Denotes a path containing one or more child paths that could be open or closed. /// Mixed } }