Skip to content

Instantly share code, notes, and snippets.

@dmytro-anokhin
Last active October 10, 2017 21:32
Show Gist options
  • Select an option

  • Save dmytro-anokhin/4d8a3de4a535e4f450e90cfaf455f447 to your computer and use it in GitHub Desktop.

Select an option

Save dmytro-anokhin/4d8a3de4a535e4f450e90cfaf455f447 to your computer and use it in GitHub Desktop.
public enum ColorSpace : Int {
case RGB
case HSV
}
public struct DrawingMode : OptionSet {
public init(rawValue: UInt)
public static var fill: DrawingMode { get }
public static var stroke: DrawingMode { get }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment