gitextract_i8frsf05/ ├── .gitignore ├── .swift-version ├── .travis.yml ├── CircleSlider.podspec ├── Example/ │ ├── CircleSlider/ │ │ ├── AppDelegate.swift │ │ ├── Base.lproj/ │ │ │ ├── LaunchScreen.xib │ │ │ └── Main.storyboard │ │ ├── Images.xcassets/ │ │ │ ├── AppIcon.appiconset/ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── button_end.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── button_start.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── button_stop.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── thumb_image_1.imageset/ │ │ │ │ └── Contents.json │ │ │ ├── thumb_image_2.imageset/ │ │ │ │ └── Contents.json │ │ │ └── thumb_image_3.imageset/ │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── ViewController.swift │ ├── CircleSlider.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── CircleSlider-Example.xcscheme │ ├── CircleSlider.xcworkspace/ │ │ └── contents.xcworkspacedata │ ├── Podfile │ ├── Pods/ │ │ ├── Local Podspecs/ │ │ │ └── CircleSlider.podspec.json │ │ ├── Pods.xcodeproj/ │ │ │ └── project.pbxproj │ │ └── Target Support Files/ │ │ ├── CircleSlider/ │ │ │ ├── CircleSlider-dummy.m │ │ │ ├── CircleSlider-prefix.pch │ │ │ ├── CircleSlider-umbrella.h │ │ │ ├── CircleSlider.modulemap │ │ │ ├── CircleSlider.xcconfig │ │ │ └── Info.plist │ │ ├── Pods-CircleSlider_Example/ │ │ │ ├── Info.plist │ │ │ ├── Pods-CircleSlider_Example-acknowledgements.markdown │ │ │ ├── Pods-CircleSlider_Example-acknowledgements.plist │ │ │ ├── Pods-CircleSlider_Example-dummy.m │ │ │ ├── Pods-CircleSlider_Example-frameworks.sh │ │ │ ├── Pods-CircleSlider_Example-resources.sh │ │ │ ├── Pods-CircleSlider_Example-umbrella.h │ │ │ ├── Pods-CircleSlider_Example.debug.xcconfig │ │ │ ├── Pods-CircleSlider_Example.modulemap │ │ │ └── Pods-CircleSlider_Example.release.xcconfig │ │ └── Pods-CircleSlider_Tests/ │ │ ├── Info.plist │ │ ├── Pods-CircleSlider_Tests-acknowledgements.markdown │ │ ├── Pods-CircleSlider_Tests-acknowledgements.plist │ │ ├── Pods-CircleSlider_Tests-dummy.m │ │ ├── Pods-CircleSlider_Tests-frameworks.sh │ │ ├── Pods-CircleSlider_Tests-resources.sh │ │ ├── Pods-CircleSlider_Tests-umbrella.h │ │ ├── Pods-CircleSlider_Tests.debug.xcconfig │ │ ├── Pods-CircleSlider_Tests.modulemap │ │ └── Pods-CircleSlider_Tests.release.xcconfig │ └── Tests/ │ ├── Info.plist │ └── Tests.swift ├── LICENSE ├── Pod/ │ ├── Assets/ │ │ └── .gitkeep │ └── Classes/ │ ├── .gitkeep │ ├── CircleSlider.swift │ ├── Math.swift │ └── TrackLayer.swift └── README.md