├── MercurialPaint.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── simongladman.xcuserdatad │ └── xcschemes │ ├── MercurialPaint.xcscheme │ └── xcschememanagement.plist ├── MercurialPaint ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── ViewController.swift ├── components │ └── MercurialPaint.swift ├── screenshot.jpg ├── shaders │ └── Shaders.metal └── shadingImageEditor │ ├── ItemRenderer.swift │ ├── ShadingImageEditor.swift │ └── SupportClasses.swift └── README.md /MercurialPaint.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /MercurialPaint.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /MercurialPaint.xcodeproj/xcuserdata/simongladman.xcuserdatad/xcschemes/MercurialPaint.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint.xcodeproj/xcuserdata/simongladman.xcuserdatad/xcschemes/MercurialPaint.xcscheme -------------------------------------------------------------------------------- /MercurialPaint.xcodeproj/xcuserdata/simongladman.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint.xcodeproj/xcuserdata/simongladman.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /MercurialPaint/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/AppDelegate.swift -------------------------------------------------------------------------------- /MercurialPaint/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /MercurialPaint/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /MercurialPaint/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /MercurialPaint/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/Info.plist -------------------------------------------------------------------------------- /MercurialPaint/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/ViewController.swift -------------------------------------------------------------------------------- /MercurialPaint/components/MercurialPaint.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/components/MercurialPaint.swift -------------------------------------------------------------------------------- /MercurialPaint/screenshot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/screenshot.jpg -------------------------------------------------------------------------------- /MercurialPaint/shaders/Shaders.metal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/shaders/Shaders.metal -------------------------------------------------------------------------------- /MercurialPaint/shadingImageEditor/ItemRenderer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/shadingImageEditor/ItemRenderer.swift -------------------------------------------------------------------------------- /MercurialPaint/shadingImageEditor/ShadingImageEditor.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/shadingImageEditor/ShadingImageEditor.swift -------------------------------------------------------------------------------- /MercurialPaint/shadingImageEditor/SupportClasses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/MercurialPaint/shadingImageEditor/SupportClasses.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FlexMonkey/MercurialPaint/HEAD/README.md --------------------------------------------------------------------------------