├── .gitignore ├── Classes ├── ConstantsAndMacros.h ├── GLView.h ├── GLView.m ├── GLViewController.h ├── GLViewController.m ├── OpenGLCommon.h ├── Part5ProjectAppDelegate.h └── Part5ProjectAppDelegate.m ├── Info.plist ├── MainWindow.xib ├── Planet3D.entitlements ├── Planet3D.xcodeproj ├── jeff.mode1v3 ├── jeff.pbxuser ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── steven.xcuserdatad │ │ ├── UserInterfaceState.xcuserstate │ │ └── WorkspaceSettings.xcsettings └── xcuserdata │ └── steven.xcuserdatad │ ├── xcdebugger │ └── Breakpoints.xcbkptlist │ └── xcschemes │ ├── Planet3D.xcscheme │ └── xcschememanagement.plist ├── Planet3D_Prefix.pch ├── earth.png ├── main.m ├── mars.png └── readme.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Classes/ConstantsAndMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Classes/ConstantsAndMacros.h -------------------------------------------------------------------------------- /Classes/GLView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Classes/GLView.h -------------------------------------------------------------------------------- /Classes/GLView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Classes/GLView.m -------------------------------------------------------------------------------- /Classes/GLViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Classes/GLViewController.h -------------------------------------------------------------------------------- /Classes/GLViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Classes/GLViewController.m -------------------------------------------------------------------------------- /Classes/OpenGLCommon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Classes/OpenGLCommon.h -------------------------------------------------------------------------------- /Classes/Part5ProjectAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Classes/Part5ProjectAppDelegate.h -------------------------------------------------------------------------------- /Classes/Part5ProjectAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Classes/Part5ProjectAppDelegate.m -------------------------------------------------------------------------------- /Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Info.plist -------------------------------------------------------------------------------- /MainWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/MainWindow.xib -------------------------------------------------------------------------------- /Planet3D.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D.entitlements -------------------------------------------------------------------------------- /Planet3D.xcodeproj/jeff.mode1v3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D.xcodeproj/jeff.mode1v3 -------------------------------------------------------------------------------- /Planet3D.xcodeproj/jeff.pbxuser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D.xcodeproj/jeff.pbxuser -------------------------------------------------------------------------------- /Planet3D.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Planet3D.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Planet3D.xcodeproj/project.xcworkspace/xcuserdata/steven.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D.xcodeproj/project.xcworkspace/xcuserdata/steven.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /Planet3D.xcodeproj/project.xcworkspace/xcuserdata/steven.xcuserdatad/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D.xcodeproj/project.xcworkspace/xcuserdata/steven.xcuserdatad/WorkspaceSettings.xcsettings -------------------------------------------------------------------------------- /Planet3D.xcodeproj/xcuserdata/steven.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D.xcodeproj/xcuserdata/steven.xcuserdatad/xcdebugger/Breakpoints.xcbkptlist -------------------------------------------------------------------------------- /Planet3D.xcodeproj/xcuserdata/steven.xcuserdatad/xcschemes/Planet3D.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D.xcodeproj/xcuserdata/steven.xcuserdatad/xcschemes/Planet3D.xcscheme -------------------------------------------------------------------------------- /Planet3D.xcodeproj/xcuserdata/steven.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D.xcodeproj/xcuserdata/steven.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /Planet3D_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/Planet3D_Prefix.pch -------------------------------------------------------------------------------- /earth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/earth.png -------------------------------------------------------------------------------- /main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/main.m -------------------------------------------------------------------------------- /mars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/mars.png -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/steventroughtonsmith/planet3d/HEAD/readme.txt --------------------------------------------------------------------------------