├── .DS_Store ├── FLAnimation.podspec ├── FLAnimation ├── UIView+FlAnimation.h └── UIView+FlAnimation.m ├── FLAnimationDemo ├── .DS_Store ├── FLAnimationDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── admin.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── admin.xcuserdatad │ │ └── xcschemes │ │ ├── FLAnimationDemo.xcscheme │ │ └── xcschememanagement.plist ├── FLAnimationDemo.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── admin.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist ├── FLAnimationDemo │ ├── .DS_Store │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── FLAnimationDemoTests │ ├── FLAnimationDemoTests.m │ └── Info.plist ├── FLAnimationDemoUITests │ ├── FLAnimationDemoUITests.m │ └── Info.plist ├── Podfile ├── Podfile.lock └── Pods │ ├── FLAnimation │ ├── FLAnimation │ │ ├── UIView+FlAnimation.h │ │ └── UIView+FlAnimation.m │ ├── LICENSE │ └── README.md │ ├── Headers │ ├── Private │ │ ├── FLAnimation │ │ │ └── UIView+FlAnimation.h │ │ └── pop │ │ │ ├── FloatConversion.h │ │ │ ├── POP.h │ │ │ ├── POPAction.h │ │ │ ├── POPAnimatableProperty.h │ │ │ ├── POPAnimation.h │ │ │ ├── POPAnimationEvent.h │ │ │ ├── POPAnimationEventInternal.h │ │ │ ├── POPAnimationExtras.h │ │ │ ├── POPAnimationInternal.h │ │ │ ├── POPAnimationPrivate.h │ │ │ ├── POPAnimationRuntime.h │ │ │ ├── POPAnimationTracer.h │ │ │ ├── POPAnimationTracerInternal.h │ │ │ ├── POPAnimator.h │ │ │ ├── POPAnimatorPrivate.h │ │ │ ├── POPBasicAnimation.h │ │ │ ├── POPBasicAnimationInternal.h │ │ │ ├── POPCGUtils.h │ │ │ ├── POPCustomAnimation.h │ │ │ ├── POPDecayAnimation.h │ │ │ ├── POPDecayAnimationInternal.h │ │ │ ├── POPDefines.h │ │ │ ├── POPGeometry.h │ │ │ ├── POPLayerExtras.h │ │ │ ├── POPMath.h │ │ │ ├── POPPropertyAnimation.h │ │ │ ├── POPPropertyAnimationInternal.h │ │ │ ├── POPSpringAnimation.h │ │ │ ├── POPSpringAnimationInternal.h │ │ │ ├── POPSpringSolver.h │ │ │ ├── POPVector.h │ │ │ ├── TransformationMatrix.h │ │ │ └── UnitBezier.h │ └── Public │ │ ├── FLAnimation │ │ └── UIView+FlAnimation.h │ │ └── pop │ │ ├── POP.h │ │ ├── POPAnimatableProperty.h │ │ ├── POPAnimation.h │ │ ├── POPAnimationEvent.h │ │ ├── POPAnimationExtras.h │ │ ├── POPAnimationTracer.h │ │ ├── POPAnimator.h │ │ ├── POPBasicAnimation.h │ │ ├── POPCustomAnimation.h │ │ ├── POPDecayAnimation.h │ │ ├── POPDefines.h │ │ ├── POPGeometry.h │ │ ├── POPLayerExtras.h │ │ ├── POPPropertyAnimation.h │ │ └── POPSpringAnimation.h │ ├── Manifest.lock │ ├── Pods.xcodeproj │ ├── project.pbxproj │ └── xcuserdata │ │ └── admin.xcuserdatad │ │ └── xcschemes │ │ ├── FLAnimation.xcscheme │ │ ├── Pods-FLAnimationDemo.xcscheme │ │ ├── pop.xcscheme │ │ └── xcschememanagement.plist │ ├── Target Support Files │ ├── FLAnimation │ │ ├── FLAnimation-dummy.m │ │ ├── FLAnimation-prefix.pch │ │ └── FLAnimation.xcconfig │ ├── Pods-FLAnimationDemo │ │ ├── Pods-FLAnimationDemo-acknowledgements.markdown │ │ ├── Pods-FLAnimationDemo-acknowledgements.plist │ │ ├── Pods-FLAnimationDemo-dummy.m │ │ ├── Pods-FLAnimationDemo-frameworks.sh │ │ ├── Pods-FLAnimationDemo-resources.sh │ │ ├── Pods-FLAnimationDemo.debug.xcconfig │ │ └── Pods-FLAnimationDemo.release.xcconfig │ └── pop │ │ ├── pop-dummy.m │ │ ├── pop-prefix.pch │ │ └── pop.xcconfig │ └── pop │ ├── LICENSE │ ├── README.md │ └── pop │ ├── POP.h │ ├── POPAction.h │ ├── POPAnimatableProperty.h │ ├── POPAnimatableProperty.mm │ ├── POPAnimation.h │ ├── POPAnimation.mm │ ├── POPAnimationEvent.h │ ├── POPAnimationEvent.mm │ ├── POPAnimationEventInternal.h │ ├── POPAnimationExtras.h │ ├── POPAnimationExtras.mm │ ├── POPAnimationInternal.h │ ├── POPAnimationPrivate.h │ ├── POPAnimationRuntime.h │ ├── POPAnimationRuntime.mm │ ├── POPAnimationTracer.h │ ├── POPAnimationTracer.mm │ ├── POPAnimationTracerInternal.h │ ├── POPAnimator.h │ ├── POPAnimator.mm │ ├── POPAnimatorPrivate.h │ ├── POPBasicAnimation.h │ ├── POPBasicAnimation.mm │ ├── POPBasicAnimationInternal.h │ ├── POPCGUtils.h │ ├── POPCGUtils.mm │ ├── POPCustomAnimation.h │ ├── POPCustomAnimation.mm │ ├── POPDecayAnimation.h │ ├── POPDecayAnimation.mm │ ├── POPDecayAnimationInternal.h │ ├── POPDefines.h │ ├── POPGeometry.h │ ├── POPGeometry.mm │ ├── POPLayerExtras.h │ ├── POPLayerExtras.mm │ ├── POPMath.h │ ├── POPMath.mm │ ├── POPPropertyAnimation.h │ ├── POPPropertyAnimation.mm │ ├── POPPropertyAnimationInternal.h │ ├── POPSpringAnimation.h │ ├── POPSpringAnimation.mm │ ├── POPSpringAnimationInternal.h │ ├── POPSpringSolver.h │ ├── POPVector.h │ ├── POPVector.mm │ └── WebCore │ ├── FloatConversion.h │ ├── TransformationMatrix.cpp │ ├── TransformationMatrix.h │ └── UnitBezier.h ├── LICENSE ├── README.md └── example.gif /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/.DS_Store -------------------------------------------------------------------------------- /FLAnimation.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimation.podspec -------------------------------------------------------------------------------- /FLAnimation/UIView+FlAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimation/UIView+FlAnimation.h -------------------------------------------------------------------------------- /FLAnimation/UIView+FlAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimation/UIView+FlAnimation.m -------------------------------------------------------------------------------- /FLAnimationDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/.DS_Store -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo.xcodeproj/project.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/FLAnimationDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/FLAnimationDemo.xcscheme -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo.xcworkspace/xcuserdata/admin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo.xcworkspace/xcuserdata/admin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo.xcworkspace/xcuserdata/admin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo/.DS_Store -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo/AppDelegate.h -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo/AppDelegate.m -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo/Info.plist -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo/ViewController.h -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo/ViewController.m -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemo/main.m -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemoTests/FLAnimationDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemoTests/FLAnimationDemoTests.m -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemoTests/Info.plist -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemoUITests/FLAnimationDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemoUITests/FLAnimationDemoUITests.m -------------------------------------------------------------------------------- /FLAnimationDemo/FLAnimationDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/FLAnimationDemoUITests/Info.plist -------------------------------------------------------------------------------- /FLAnimationDemo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Podfile -------------------------------------------------------------------------------- /FLAnimationDemo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Podfile.lock -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/FLAnimation/FLAnimation/UIView+FlAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/FLAnimation/FLAnimation/UIView+FlAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/FLAnimation/FLAnimation/UIView+FlAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/FLAnimation/FLAnimation/UIView+FlAnimation.m -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/FLAnimation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/FLAnimation/LICENSE -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/FLAnimation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/FLAnimation/README.md -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/FLAnimation/UIView+FlAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../FLAnimation/FLAnimation/UIView+FlAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/FloatConversion.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAction.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAction.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPCGUtils.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPMath.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPMath.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/POPVector.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPVector.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/TransformationMatrix.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Private/pop/UnitBezier.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/FLAnimation/UIView+FlAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../FLAnimation/FLAnimation/UIView+FlAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POP.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POP.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPAnimator.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPDefines.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPDefines.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPGeometry.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Headers/Public/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- 1 | ../../../pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Manifest.lock -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/FLAnimation.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/FLAnimation.xcscheme -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/Pods-FLAnimationDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/Pods-FLAnimationDemo.xcscheme -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/pop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/pop.xcscheme -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Pods.xcodeproj/xcuserdata/admin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/FLAnimation/FLAnimation-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/FLAnimation/FLAnimation-dummy.m -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/FLAnimation/FLAnimation-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/FLAnimation/FLAnimation-prefix.pch -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/FLAnimation/FLAnimation.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/FLAnimation/FLAnimation.xcconfig -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo-acknowledgements.markdown -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo-acknowledgements.plist -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo-dummy.m -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo-frameworks.sh -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo-resources.sh -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo.debug.xcconfig -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/Pods-FLAnimationDemo/Pods-FLAnimationDemo.release.xcconfig -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/pop/pop-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/pop/pop-dummy.m -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/pop/pop-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/pop/pop-prefix.pch -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/Target Support Files/pop/pop.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/Target Support Files/pop/pop.xcconfig -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/LICENSE -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/README.md -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POP.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAction.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimator.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPDefines.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPGeometry.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPMath.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPMath.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPVector.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/POPVector.mm -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /FLAnimationDemo/Pods/pop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/FLAnimationDemo/Pods/pop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/README.md -------------------------------------------------------------------------------- /example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atony2099/FLAnimation/HEAD/example.gif --------------------------------------------------------------------------------