├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Graphicz.xcworkspace └── contents.xcworkspacedata ├── Graphicz ├── Graphicz.xcodeproj │ ├── project.pbxproj │ └── xcshareddata │ │ └── xcschemes │ │ ├── Graphicz-ios.xcscheme │ │ ├── Graphicz-osx.xcscheme │ │ ├── Graphicz-tvos.xcscheme │ │ └── Graphicz-watchos.xcscheme ├── Graphicz │ ├── Extensions │ │ ├── CGRect.swift │ │ └── CGVector.swift │ └── Info.plist └── GraphiczTests │ ├── CGRectTests.swift │ ├── CGVectorTests.swift │ └── Info.plist ├── LICENSE ├── Playground └── Playground.playground │ ├── Contents.swift │ ├── contents.xcplayground │ └── playground.xcworkspace │ └── contents.xcworkspacedata └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 2 | # v1.0.0 3 | 4 | Initial release 5 | -------------------------------------------------------------------------------- /Graphicz.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Graphicz/Graphicz.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/Graphicz.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Graphicz/Graphicz.xcodeproj/xcshareddata/xcschemes/Graphicz-ios.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/Graphicz.xcodeproj/xcshareddata/xcschemes/Graphicz-ios.xcscheme -------------------------------------------------------------------------------- /Graphicz/Graphicz.xcodeproj/xcshareddata/xcschemes/Graphicz-osx.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/Graphicz.xcodeproj/xcshareddata/xcschemes/Graphicz-osx.xcscheme -------------------------------------------------------------------------------- /Graphicz/Graphicz.xcodeproj/xcshareddata/xcschemes/Graphicz-tvos.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/Graphicz.xcodeproj/xcshareddata/xcschemes/Graphicz-tvos.xcscheme -------------------------------------------------------------------------------- /Graphicz/Graphicz.xcodeproj/xcshareddata/xcschemes/Graphicz-watchos.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/Graphicz.xcodeproj/xcshareddata/xcschemes/Graphicz-watchos.xcscheme -------------------------------------------------------------------------------- /Graphicz/Graphicz/Extensions/CGRect.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/Graphicz/Extensions/CGRect.swift -------------------------------------------------------------------------------- /Graphicz/Graphicz/Extensions/CGVector.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/Graphicz/Extensions/CGVector.swift -------------------------------------------------------------------------------- /Graphicz/Graphicz/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/Graphicz/Info.plist -------------------------------------------------------------------------------- /Graphicz/GraphiczTests/CGRectTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/GraphiczTests/CGRectTests.swift -------------------------------------------------------------------------------- /Graphicz/GraphiczTests/CGVectorTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/GraphiczTests/CGVectorTests.swift -------------------------------------------------------------------------------- /Graphicz/GraphiczTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Graphicz/GraphiczTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/LICENSE -------------------------------------------------------------------------------- /Playground/Playground.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Playground/Playground.playground/Contents.swift -------------------------------------------------------------------------------- /Playground/Playground.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Playground/Playground.playground/contents.xcplayground -------------------------------------------------------------------------------- /Playground/Playground.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/Playground/Playground.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SwiftKitz/Graphicz/HEAD/README.md --------------------------------------------------------------------------------