├── LICENSE ├── README.md ├── SemiCircuarScale.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── rewardz.xcuserdatad │ └── xcschemes │ ├── SemiCircuarScale.xcscheme │ └── xcschememanagement.plist ├── SemiCircuarScale ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── ViewController.swift ├── SemiCircularScale.swift ├── needle.png └── screens ├── first.tiff ├── firstPNG.png ├── second.tiff └── secondPNG.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/README.md -------------------------------------------------------------------------------- /SemiCircuarScale.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircuarScale.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /SemiCircuarScale.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircuarScale.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /SemiCircuarScale.xcodeproj/xcuserdata/rewardz.xcuserdatad/xcschemes/SemiCircuarScale.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircuarScale.xcodeproj/xcuserdata/rewardz.xcuserdatad/xcschemes/SemiCircuarScale.xcscheme -------------------------------------------------------------------------------- /SemiCircuarScale.xcodeproj/xcuserdata/rewardz.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircuarScale.xcodeproj/xcuserdata/rewardz.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /SemiCircuarScale/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircuarScale/AppDelegate.swift -------------------------------------------------------------------------------- /SemiCircuarScale/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircuarScale/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /SemiCircuarScale/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircuarScale/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /SemiCircuarScale/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircuarScale/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /SemiCircuarScale/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircuarScale/Info.plist -------------------------------------------------------------------------------- /SemiCircuarScale/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircuarScale/ViewController.swift -------------------------------------------------------------------------------- /SemiCircularScale.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/SemiCircularScale.swift -------------------------------------------------------------------------------- /needle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/needle.png -------------------------------------------------------------------------------- /screens/first.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/screens/first.tiff -------------------------------------------------------------------------------- /screens/firstPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/screens/firstPNG.png -------------------------------------------------------------------------------- /screens/second.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/screens/second.tiff -------------------------------------------------------------------------------- /screens/secondPNG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ankits16/SemiCircular-Scale/HEAD/screens/secondPNG.png --------------------------------------------------------------------------------