├── Curves.playground ├── Contents.swift ├── Sources │ └── SupportCode.swift ├── contents.xcplayground ├── playground.xcworkspace │ └── contents.xcworkspacedata └── timeline.xctimeline ├── FrictionCurves.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── victorbaro.xcuserdatad │ └── xcschemes │ ├── FrictionCurves.xcscheme │ └── xcschememanagement.plist ├── FrictionCurves ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── FirstViewController.swift ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── first.imageset │ │ ├── Contents.json │ │ └── first.pdf │ └── second.imageset │ │ ├── Contents.json │ │ └── second.pdf ├── Info.plist └── SecondViewController.swift ├── FrictionCurvesTests ├── FrictionCurvesTests.swift └── Info.plist ├── Others ├── RubberBand_01.gif └── RubberBand_02.gif └── README.md /Curves.playground/Contents.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/Curves.playground/Contents.swift -------------------------------------------------------------------------------- /Curves.playground/Sources/SupportCode.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/Curves.playground/Sources/SupportCode.swift -------------------------------------------------------------------------------- /Curves.playground/contents.xcplayground: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/Curves.playground/contents.xcplayground -------------------------------------------------------------------------------- /Curves.playground/playground.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/Curves.playground/playground.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Curves.playground/timeline.xctimeline: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/Curves.playground/timeline.xctimeline -------------------------------------------------------------------------------- /FrictionCurves.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FrictionCurves.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FrictionCurves.xcodeproj/xcuserdata/victorbaro.xcuserdatad/xcschemes/FrictionCurves.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves.xcodeproj/xcuserdata/victorbaro.xcuserdatad/xcschemes/FrictionCurves.xcscheme -------------------------------------------------------------------------------- /FrictionCurves.xcodeproj/xcuserdata/victorbaro.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves.xcodeproj/xcuserdata/victorbaro.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FrictionCurves/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/AppDelegate.swift -------------------------------------------------------------------------------- /FrictionCurves/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /FrictionCurves/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FrictionCurves/FirstViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/FirstViewController.swift -------------------------------------------------------------------------------- /FrictionCurves/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FrictionCurves/Images.xcassets/first.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/Images.xcassets/first.imageset/Contents.json -------------------------------------------------------------------------------- /FrictionCurves/Images.xcassets/first.imageset/first.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/Images.xcassets/first.imageset/first.pdf -------------------------------------------------------------------------------- /FrictionCurves/Images.xcassets/second.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/Images.xcassets/second.imageset/Contents.json -------------------------------------------------------------------------------- /FrictionCurves/Images.xcassets/second.imageset/second.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/Images.xcassets/second.imageset/second.pdf -------------------------------------------------------------------------------- /FrictionCurves/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/Info.plist -------------------------------------------------------------------------------- /FrictionCurves/SecondViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurves/SecondViewController.swift -------------------------------------------------------------------------------- /FrictionCurvesTests/FrictionCurvesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurvesTests/FrictionCurvesTests.swift -------------------------------------------------------------------------------- /FrictionCurvesTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/FrictionCurvesTests/Info.plist -------------------------------------------------------------------------------- /Others/RubberBand_01.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/Others/RubberBand_01.gif -------------------------------------------------------------------------------- /Others/RubberBand_02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/Others/RubberBand_02.gif -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Produkt/RubberBandEffect/HEAD/README.md --------------------------------------------------------------------------------