├── .gitignore ├── CA360.xcodeproj └── project.pbxproj ├── CA360_Prefix.pch ├── Classes ├── CA360AppDelegate.h ├── CA360AppDelegate.m ├── CALayer+FTDebugDrawing.h ├── CALayer+FTDebugDrawing.m ├── Fun Stuff │ ├── BitmapFontCounter.h │ ├── BitmapFontCounter.m │ ├── ShutterTransition.h │ └── ShutterTransition.m ├── RootViewController.h ├── RootViewController.m ├── Samples │ ├── AdvancedShapeLayers.h │ ├── AdvancedShapeLayers.m │ ├── AnimationGroups.h │ ├── AnimationGroups.m │ ├── AnimationTransactions.h │ ├── AnimationTransactions.m │ ├── BasicAnimation.h │ ├── BasicAnimation.m │ ├── CustomPropertyAnimation.h │ ├── CustomPropertyAnimation.m │ ├── GeometricProperties.h │ ├── GeometricProperties.m │ ├── GradientLayers.h │ ├── GradientLayers.m │ ├── ImageContent.h │ ├── ImageContent.m │ ├── KeyframeAnimation.h │ ├── KeyframeAnimation.m │ ├── LayerActions.h │ ├── LayerActions.m │ ├── LayerDrawing.h │ ├── LayerDrawing.m │ ├── LayerTransforms.h │ ├── LayerTransforms.m │ ├── LayerTransitions.h │ ├── LayerTransitions.m │ ├── LayerTree.h │ ├── LayerTree.m │ ├── SampleManager.h │ ├── SampleManager.m │ ├── ShapeLayers.h │ ├── ShapeLayers.m │ ├── StyleProperties.h │ ├── StyleProperties.m │ ├── TextLayers.h │ └── TextLayers.m └── UsefulMacros.h ├── README.rst ├── Resources-iPad └── Resources │ └── MainWindow-iPad.xib ├── Resources ├── Ben.png ├── CA360-Info.plist ├── Delicious-Roman.otf ├── FTSLogo.png ├── MainWindow.xib ├── Mario.acorn ├── Mario.png ├── NumberStrip.png ├── StarMask.png └── Steve.png └── main.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/.gitignore -------------------------------------------------------------------------------- /CA360.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/CA360.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CA360_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/CA360_Prefix.pch -------------------------------------------------------------------------------- /Classes/CA360AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/CA360AppDelegate.h -------------------------------------------------------------------------------- /Classes/CA360AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/CA360AppDelegate.m -------------------------------------------------------------------------------- /Classes/CALayer+FTDebugDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/CALayer+FTDebugDrawing.h -------------------------------------------------------------------------------- /Classes/CALayer+FTDebugDrawing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/CALayer+FTDebugDrawing.m -------------------------------------------------------------------------------- /Classes/Fun Stuff/BitmapFontCounter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Fun Stuff/BitmapFontCounter.h -------------------------------------------------------------------------------- /Classes/Fun Stuff/BitmapFontCounter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Fun Stuff/BitmapFontCounter.m -------------------------------------------------------------------------------- /Classes/Fun Stuff/ShutterTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Fun Stuff/ShutterTransition.h -------------------------------------------------------------------------------- /Classes/Fun Stuff/ShutterTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Fun Stuff/ShutterTransition.m -------------------------------------------------------------------------------- /Classes/RootViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/RootViewController.h -------------------------------------------------------------------------------- /Classes/RootViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/RootViewController.m -------------------------------------------------------------------------------- /Classes/Samples/AdvancedShapeLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/AdvancedShapeLayers.h -------------------------------------------------------------------------------- /Classes/Samples/AdvancedShapeLayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/AdvancedShapeLayers.m -------------------------------------------------------------------------------- /Classes/Samples/AnimationGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/AnimationGroups.h -------------------------------------------------------------------------------- /Classes/Samples/AnimationGroups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/AnimationGroups.m -------------------------------------------------------------------------------- /Classes/Samples/AnimationTransactions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/AnimationTransactions.h -------------------------------------------------------------------------------- /Classes/Samples/AnimationTransactions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/AnimationTransactions.m -------------------------------------------------------------------------------- /Classes/Samples/BasicAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/BasicAnimation.h -------------------------------------------------------------------------------- /Classes/Samples/BasicAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/BasicAnimation.m -------------------------------------------------------------------------------- /Classes/Samples/CustomPropertyAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/CustomPropertyAnimation.h -------------------------------------------------------------------------------- /Classes/Samples/CustomPropertyAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/CustomPropertyAnimation.m -------------------------------------------------------------------------------- /Classes/Samples/GeometricProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/GeometricProperties.h -------------------------------------------------------------------------------- /Classes/Samples/GeometricProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/GeometricProperties.m -------------------------------------------------------------------------------- /Classes/Samples/GradientLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/GradientLayers.h -------------------------------------------------------------------------------- /Classes/Samples/GradientLayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/GradientLayers.m -------------------------------------------------------------------------------- /Classes/Samples/ImageContent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/ImageContent.h -------------------------------------------------------------------------------- /Classes/Samples/ImageContent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/ImageContent.m -------------------------------------------------------------------------------- /Classes/Samples/KeyframeAnimation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/KeyframeAnimation.h -------------------------------------------------------------------------------- /Classes/Samples/KeyframeAnimation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/KeyframeAnimation.m -------------------------------------------------------------------------------- /Classes/Samples/LayerActions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/LayerActions.h -------------------------------------------------------------------------------- /Classes/Samples/LayerActions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/LayerActions.m -------------------------------------------------------------------------------- /Classes/Samples/LayerDrawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/LayerDrawing.h -------------------------------------------------------------------------------- /Classes/Samples/LayerDrawing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/LayerDrawing.m -------------------------------------------------------------------------------- /Classes/Samples/LayerTransforms.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/LayerTransforms.h -------------------------------------------------------------------------------- /Classes/Samples/LayerTransforms.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/LayerTransforms.m -------------------------------------------------------------------------------- /Classes/Samples/LayerTransitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/LayerTransitions.h -------------------------------------------------------------------------------- /Classes/Samples/LayerTransitions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/LayerTransitions.m -------------------------------------------------------------------------------- /Classes/Samples/LayerTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/LayerTree.h -------------------------------------------------------------------------------- /Classes/Samples/LayerTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/LayerTree.m -------------------------------------------------------------------------------- /Classes/Samples/SampleManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/SampleManager.h -------------------------------------------------------------------------------- /Classes/Samples/SampleManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/SampleManager.m -------------------------------------------------------------------------------- /Classes/Samples/ShapeLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/ShapeLayers.h -------------------------------------------------------------------------------- /Classes/Samples/ShapeLayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/ShapeLayers.m -------------------------------------------------------------------------------- /Classes/Samples/StyleProperties.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/StyleProperties.h -------------------------------------------------------------------------------- /Classes/Samples/StyleProperties.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/StyleProperties.m -------------------------------------------------------------------------------- /Classes/Samples/TextLayers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/TextLayers.h -------------------------------------------------------------------------------- /Classes/Samples/TextLayers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/Samples/TextLayers.m -------------------------------------------------------------------------------- /Classes/UsefulMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Classes/UsefulMacros.h -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/README.rst -------------------------------------------------------------------------------- /Resources-iPad/Resources/MainWindow-iPad.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources-iPad/Resources/MainWindow-iPad.xib -------------------------------------------------------------------------------- /Resources/Ben.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources/Ben.png -------------------------------------------------------------------------------- /Resources/CA360-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources/CA360-Info.plist -------------------------------------------------------------------------------- /Resources/Delicious-Roman.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources/Delicious-Roman.otf -------------------------------------------------------------------------------- /Resources/FTSLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources/FTSLogo.png -------------------------------------------------------------------------------- /Resources/MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources/MainWindow.xib -------------------------------------------------------------------------------- /Resources/Mario.acorn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources/Mario.acorn -------------------------------------------------------------------------------- /Resources/Mario.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources/Mario.png -------------------------------------------------------------------------------- /Resources/NumberStrip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources/NumberStrip.png -------------------------------------------------------------------------------- /Resources/StarMask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources/StarMask.png -------------------------------------------------------------------------------- /Resources/Steve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/Resources/Steve.png -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neror/CA360/HEAD/main.m --------------------------------------------------------------------------------