├── .gitignore ├── README.md └── TestPop ├── Controllers ├── CombinePOPbox.h ├── CombinePOPbox.m ├── CombinePOPbox.xib ├── POPBasicPOPViewAlpha.h ├── POPBasicPOPViewAlpha.m ├── POPBasicPOPViewAlpha.xib ├── POPSpringPOPLayerPosition.h ├── POPSpringPOPLayerPosition.m ├── POPSpringPOPLayerPosition.xib ├── POPSpringPOPLayerSize.h ├── POPSpringPOPLayerSize.m ├── POPSpringPOPLayerSize.xib ├── POPSpringPOPViewFrame.h ├── POPSpringPOPViewFrame.m ├── POPSpringPOPViewFrame.xib ├── ViewController.h ├── ViewController.m └── ViewController.xib ├── Resource ├── chengxuyuan.png ├── menu.png └── rexueriji.png ├── TestPop.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ ├── xcshareddata │ │ └── TestPop.xccheckout │ └── xcuserdata │ │ └── xudongjin.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── xudongjin.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── TestPop.xcscheme │ └── xcschememanagement.plist ├── TestPop ├── AppDelegate.h ├── AppDelegate.m ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── LaunchImage.launchimage │ │ └── Contents.json ├── TestPop-Info.plist ├── TestPop-Prefix.pch ├── en.lproj │ └── InfoPlist.strings ├── main.m └── 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 │ ├── en.lproj │ └── InfoPlist.strings │ ├── pop-Info.plist │ └── pop-Prefix.pch ├── Untitled1.gif ├── Untitled2.gif └── Untitled3.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/README.md -------------------------------------------------------------------------------- /TestPop/Controllers/CombinePOPbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/CombinePOPbox.h -------------------------------------------------------------------------------- /TestPop/Controllers/CombinePOPbox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/CombinePOPbox.m -------------------------------------------------------------------------------- /TestPop/Controllers/CombinePOPbox.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/CombinePOPbox.xib -------------------------------------------------------------------------------- /TestPop/Controllers/POPBasicPOPViewAlpha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPBasicPOPViewAlpha.h -------------------------------------------------------------------------------- /TestPop/Controllers/POPBasicPOPViewAlpha.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPBasicPOPViewAlpha.m -------------------------------------------------------------------------------- /TestPop/Controllers/POPBasicPOPViewAlpha.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPBasicPOPViewAlpha.xib -------------------------------------------------------------------------------- /TestPop/Controllers/POPSpringPOPLayerPosition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPSpringPOPLayerPosition.h -------------------------------------------------------------------------------- /TestPop/Controllers/POPSpringPOPLayerPosition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPSpringPOPLayerPosition.m -------------------------------------------------------------------------------- /TestPop/Controllers/POPSpringPOPLayerPosition.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPSpringPOPLayerPosition.xib -------------------------------------------------------------------------------- /TestPop/Controllers/POPSpringPOPLayerSize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPSpringPOPLayerSize.h -------------------------------------------------------------------------------- /TestPop/Controllers/POPSpringPOPLayerSize.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPSpringPOPLayerSize.m -------------------------------------------------------------------------------- /TestPop/Controllers/POPSpringPOPLayerSize.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPSpringPOPLayerSize.xib -------------------------------------------------------------------------------- /TestPop/Controllers/POPSpringPOPViewFrame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPSpringPOPViewFrame.h -------------------------------------------------------------------------------- /TestPop/Controllers/POPSpringPOPViewFrame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPSpringPOPViewFrame.m -------------------------------------------------------------------------------- /TestPop/Controllers/POPSpringPOPViewFrame.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/POPSpringPOPViewFrame.xib -------------------------------------------------------------------------------- /TestPop/Controllers/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/ViewController.h -------------------------------------------------------------------------------- /TestPop/Controllers/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/ViewController.m -------------------------------------------------------------------------------- /TestPop/Controllers/ViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Controllers/ViewController.xib -------------------------------------------------------------------------------- /TestPop/Resource/chengxuyuan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Resource/chengxuyuan.png -------------------------------------------------------------------------------- /TestPop/Resource/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Resource/menu.png -------------------------------------------------------------------------------- /TestPop/Resource/rexueriji.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Resource/rexueriji.png -------------------------------------------------------------------------------- /TestPop/TestPop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TestPop/TestPop.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TestPop/TestPop.xcodeproj/project.xcworkspace/xcshareddata/TestPop.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop.xcodeproj/project.xcworkspace/xcshareddata/TestPop.xccheckout -------------------------------------------------------------------------------- /TestPop/TestPop.xcodeproj/project.xcworkspace/xcuserdata/xudongjin.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop.xcodeproj/project.xcworkspace/xcuserdata/xudongjin.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /TestPop/TestPop.xcodeproj/project.xcworkspace/xcuserdata/xudongjin.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop.xcodeproj/project.xcworkspace/xcuserdata/xudongjin.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /TestPop/TestPop.xcodeproj/xcuserdata/xudongjin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop.xcodeproj/xcuserdata/xudongjin.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /TestPop/TestPop.xcodeproj/xcuserdata/xudongjin.xcuserdatad/xcschemes/TestPop.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop.xcodeproj/xcuserdata/xudongjin.xcuserdatad/xcschemes/TestPop.xcscheme -------------------------------------------------------------------------------- /TestPop/TestPop.xcodeproj/xcuserdata/xudongjin.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop.xcodeproj/xcuserdata/xudongjin.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /TestPop/TestPop/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/AppDelegate.h -------------------------------------------------------------------------------- /TestPop/TestPop/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/AppDelegate.m -------------------------------------------------------------------------------- /TestPop/TestPop/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /TestPop/TestPop/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /TestPop/TestPop/TestPop-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/TestPop-Info.plist -------------------------------------------------------------------------------- /TestPop/TestPop/TestPop-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/TestPop-Prefix.pch -------------------------------------------------------------------------------- /TestPop/TestPop/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TestPop/TestPop/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/main.m -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POP.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAction.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimatableProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimatableProperty.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimatableProperty.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimatableProperty.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimation.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimation.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationEvent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationEvent.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationEvent.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationEvent.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationEventInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationEventInternal.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationExtras.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationExtras.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationInternal.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationPrivate.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationRuntime.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationRuntime.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationRuntime.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationTracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationTracer.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationTracer.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationTracer.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimationTracerInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimationTracerInternal.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimator.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimator.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimator.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPAnimatorPrivate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPAnimatorPrivate.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPBasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPBasicAnimation.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPBasicAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPBasicAnimation.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPBasicAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPBasicAnimationInternal.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPCGUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPCGUtils.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPCGUtils.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPCGUtils.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPCustomAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPCustomAnimation.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPCustomAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPCustomAnimation.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPDecayAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPDecayAnimation.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPDecayAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPDecayAnimation.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPDecayAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPDecayAnimationInternal.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPDefines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPDefines.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPGeometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPGeometry.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPGeometry.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPGeometry.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPLayerExtras.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPLayerExtras.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPLayerExtras.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPLayerExtras.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPMath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPMath.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPMath.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPMath.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPPropertyAnimation.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPPropertyAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPPropertyAnimation.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPPropertyAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPPropertyAnimationInternal.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPSpringAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPSpringAnimation.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPSpringAnimation.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPSpringAnimation.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPSpringAnimationInternal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPSpringAnimationInternal.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPSpringSolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPSpringSolver.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPVector.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/POPVector.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/POPVector.mm -------------------------------------------------------------------------------- /TestPop/TestPop/pop/WebCore/FloatConversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/WebCore/FloatConversion.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/WebCore/TransformationMatrix.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/WebCore/TransformationMatrix.cpp -------------------------------------------------------------------------------- /TestPop/TestPop/pop/WebCore/TransformationMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/WebCore/TransformationMatrix.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/WebCore/UnitBezier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/WebCore/UnitBezier.h -------------------------------------------------------------------------------- /TestPop/TestPop/pop/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /TestPop/TestPop/pop/pop-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/pop-Info.plist -------------------------------------------------------------------------------- /TestPop/TestPop/pop/pop-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/TestPop/pop/pop-Prefix.pch -------------------------------------------------------------------------------- /TestPop/Untitled1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Untitled1.gif -------------------------------------------------------------------------------- /TestPop/Untitled2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Untitled2.gif -------------------------------------------------------------------------------- /TestPop/Untitled3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxd001/POPdemo/HEAD/TestPop/Untitled3.gif --------------------------------------------------------------------------------