├── .gitignore ├── AngleGradient ├── AngleGradientLayer.h └── AngleGradientLayer.m ├── AngleGradientLayer.podspec ├── AngleGradientSample ├── AngleGradientSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── AngleGradientSample.xcscheme ├── AngleGradientSample │ ├── AngleGradientSample-Info.plist │ ├── AngleGradientSample-Prefix.pch │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── SampleController.h │ ├── SampleController.m │ ├── UserControl1.h │ ├── UserControl1.m │ ├── UserControl2.h │ ├── UserControl2.m │ ├── UserControl3.h │ ├── UserControl3.m │ ├── UserControl4.h │ ├── UserControl4.m │ ├── UserControl5.h │ ├── UserControl5.m │ ├── UserControl6.h │ ├── UserControl6.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── AngleGradientSampleTests │ ├── AngleGradientSampleTests.m │ └── Info.plist ├── Default-568h@2x.png └── Podfile ├── ConicSample ├── ConicSample.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── paiv.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── paiv.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── ConicSample │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Gradients │ │ ├── UserGradient1.swift │ │ ├── UserGradient2.swift │ │ ├── UserGradient3.swift │ │ ├── UserGradient4.swift │ │ ├── UserGradient5.swift │ │ └── UserGradient6.swift │ ├── Info.plist │ └── SampleViewController.swift ├── readme.md └── screenshot.png ├── LICENSE ├── README.md └── screenshot.png /.gitignore: -------------------------------------------------------------------------------- 1 | Podfile.lock 2 | Pods 3 | -------------------------------------------------------------------------------- /AngleGradient/AngleGradientLayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradient/AngleGradientLayer.h -------------------------------------------------------------------------------- /AngleGradient/AngleGradientLayer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradient/AngleGradientLayer.m -------------------------------------------------------------------------------- /AngleGradientLayer.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientLayer.podspec -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample.xcodeproj/xcshareddata/xcschemes/AngleGradientSample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample.xcodeproj/xcshareddata/xcschemes/AngleGradientSample.xcscheme -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/AngleGradientSample-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/AngleGradientSample-Info.plist -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/AngleGradientSample-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/AngleGradientSample-Prefix.pch -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/AppDelegate.h -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/AppDelegate.m -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/SampleController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/SampleController.h -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/SampleController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/SampleController.m -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl1.h -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl1.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl1.m -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl2.h -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl2.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl2.m -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl3.h -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl3.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl3.m -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl4.h -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl4.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl4.m -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl5.h -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl5.m -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl6.h -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/UserControl6.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/UserControl6.m -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSample/main.m -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSampleTests/AngleGradientSampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSampleTests/AngleGradientSampleTests.m -------------------------------------------------------------------------------- /AngleGradientSample/AngleGradientSampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/AngleGradientSampleTests/Info.plist -------------------------------------------------------------------------------- /AngleGradientSample/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/Default-568h@2x.png -------------------------------------------------------------------------------- /AngleGradientSample/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/AngleGradientSample/Podfile -------------------------------------------------------------------------------- /ConicSample/ConicSample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ConicSample/ConicSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ConicSample/ConicSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /ConicSample/ConicSample.xcodeproj/project.xcworkspace/xcuserdata/paiv.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample.xcodeproj/project.xcworkspace/xcuserdata/paiv.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /ConicSample/ConicSample.xcodeproj/xcuserdata/paiv.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample.xcodeproj/xcuserdata/paiv.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /ConicSample/ConicSample.xcodeproj/xcuserdata/paiv.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample.xcodeproj/xcuserdata/paiv.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ConicSample/ConicSample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/AppDelegate.swift -------------------------------------------------------------------------------- /ConicSample/ConicSample/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /ConicSample/ConicSample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ConicSample/ConicSample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /ConicSample/ConicSample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ConicSample/ConicSample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ConicSample/ConicSample/Gradients/UserGradient1.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Gradients/UserGradient1.swift -------------------------------------------------------------------------------- /ConicSample/ConicSample/Gradients/UserGradient2.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Gradients/UserGradient2.swift -------------------------------------------------------------------------------- /ConicSample/ConicSample/Gradients/UserGradient3.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Gradients/UserGradient3.swift -------------------------------------------------------------------------------- /ConicSample/ConicSample/Gradients/UserGradient4.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Gradients/UserGradient4.swift -------------------------------------------------------------------------------- /ConicSample/ConicSample/Gradients/UserGradient5.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Gradients/UserGradient5.swift -------------------------------------------------------------------------------- /ConicSample/ConicSample/Gradients/UserGradient6.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Gradients/UserGradient6.swift -------------------------------------------------------------------------------- /ConicSample/ConicSample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/Info.plist -------------------------------------------------------------------------------- /ConicSample/ConicSample/SampleViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/ConicSample/SampleViewController.swift -------------------------------------------------------------------------------- /ConicSample/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/readme.md -------------------------------------------------------------------------------- /ConicSample/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/ConicSample/screenshot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paiv/AngleGradientLayer/HEAD/screenshot.png --------------------------------------------------------------------------------