├── .gitignore ├── ArtisanSample ├── ArtisanSample.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ └── ArtisanSample.xccheckout ├── ArtisanSample │ ├── AppDelegate.swift │ ├── Base.lproj │ │ ├── LaunchScreen.xib │ │ └── Main.storyboard │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── photoHeader.imageset │ │ │ ├── Contents.json │ │ │ └── photoHeader@2x.png │ ├── Info.plist │ └── ViewController.swift └── ArtisanSampleTests │ ├── ArtisanSampleTests.swift │ └── Info.plist ├── LICENSE ├── README.md ├── arcs.png ├── circle.png ├── paths.png ├── rects.png └── src └── Artisan.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/.gitignore -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample.xcodeproj/project.xcworkspace/xcshareddata/ArtisanSample.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample.xcodeproj/project.xcworkspace/xcshareddata/ArtisanSample.xccheckout -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample/AppDelegate.swift -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample/Images.xcassets/photoHeader.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample/Images.xcassets/photoHeader.imageset/Contents.json -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample/Images.xcassets/photoHeader.imageset/photoHeader@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample/Images.xcassets/photoHeader.imageset/photoHeader@2x.png -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample/Info.plist -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSample/ViewController.swift -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSampleTests/ArtisanSampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSampleTests/ArtisanSampleTests.swift -------------------------------------------------------------------------------- /ArtisanSample/ArtisanSampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/ArtisanSample/ArtisanSampleTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/README.md -------------------------------------------------------------------------------- /arcs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/arcs.png -------------------------------------------------------------------------------- /circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/circle.png -------------------------------------------------------------------------------- /paths.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/paths.png -------------------------------------------------------------------------------- /rects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/rects.png -------------------------------------------------------------------------------- /src/Artisan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dpettigrew/Artisan/HEAD/src/Artisan.swift --------------------------------------------------------------------------------