Last active
October 10, 2017 21:32
-
-
Save dmytro-anokhin/4d8a3de4a535e4f450e90cfaf455f447 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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