├── Ball ├── Ball.py ├── Normal_Mercator_map_85deg.jpg ├── README.md └── alacrity.ogg ├── Cubester ├── Cubester.py └── README.md ├── Game of Life ├── Life.py └── README.md ├── Jelly Cubes ├── JellyCubes.py └── README.md ├── LICENSE ├── Landscape ├── Landscape.py └── Readme.md ├── Maze Solver ├── README.md └── maze_solver.py ├── Maze_Generator ├── README.md └── maze_generator.py ├── README.md ├── RGB Sphere ├── Normal_Mercator_map_85deg.jpg ├── RGB Sphere.py ├── Readme.md └── alacrity.ogg ├── RayCasting_Game ├── Alphaks2.JPG ├── Ball2.jpg ├── Guru2.JPG ├── Milky_Way2.jpg ├── README.md ├── RayCastingGame.py ├── Raycast_bounce.wav ├── Raycast_collide.wav ├── Raycast_lose.wav ├── Raycast_pling.wav ├── Raycast_start.wav ├── Raycast_win.wav ├── Raytracing_01.jpg ├── Raytracing_02.jpg ├── Raytracing_03.jpg ├── Raytracing_04.jpg ├── Raytracing_05.jpg ├── Raytracing_06.jpg ├── Raytracing_07.jpg ├── Raytracing_08.jpg ├── Raytracing_09.jpg ├── Raytracing_10.jpg ├── ShadowBobs.jpg ├── TheEnd.jpg ├── Vector3D.JPG ├── alacrity.ogg ├── goldcoin2.png └── lightbulb3.png ├── RayCasting_Map ├── README.md ├── RayCasting.py ├── RayCastingMap.py └── alacrity.ogg ├── Sound Vision ├── Alphaks.jpg ├── BoxInABox.jpg ├── BoxInABox.py ├── EndCredits.py ├── Guru.JPG ├── Landscape.jpg ├── Landscape.py ├── MilkyWay.jpg ├── MilkyWay.py ├── Raytracing.py ├── Raytracing_01.jpg ├── Raytracing_02.jpg ├── Raytracing_03.jpg ├── Raytracing_04.jpg ├── Raytracing_05.jpg ├── Raytracing_06.jpg ├── Raytracing_07.jpg ├── Raytracing_08.jpg ├── Raytracing_09.jpg ├── Raytracing_10.jpg ├── Readme.md ├── Reflect.jpg ├── ShadowBobs.jpg ├── ShadowBobs.py ├── SideEffectCube.jpg ├── SideEffectCube.py ├── SoundVision.py ├── StripyVectors.jpg ├── TheEnd.jpg ├── TheGlobe.jpg ├── TheGlobe.py ├── TheStars.jpg ├── TheStars.py ├── TheWorld.jpg ├── TheWorld.py ├── TitleText.jpg ├── TitleText.py ├── cats-eye.ogg ├── firepower.ogg ├── sinking2.ogg └── vectordata.xml ├── Space Invaders ├── README.md ├── alien 1 p.dat ├── alien 10 p.dat ├── alien 11 p.dat ├── alien 12 p.dat ├── alien 2 p.dat ├── alien 3 p.dat ├── alien 4 p.dat ├── alien 5 p.dat ├── alien 6 p.dat ├── alien 7 p.dat ├── alien 8 p.dat ├── alien 9 p.dat ├── alien boss 1 p.dat ├── alien boss 2 p.dat ├── alien boss 3 p.dat ├── alien boss 4 p.dat ├── alien_ufo p.dat ├── bullet_double p.dat ├── bullet_medium p.dat ├── bullet_small p.dat ├── bullet_ufo p.dat ├── defeat w.dat ├── explo 12 p.dat ├── explosion alien w.dat ├── explosion p.dat ├── explosion ship boss w.dat ├── explosion ufo m.dat ├── miss w.dat ├── music theme o.dat ├── pling w.dat ├── power_up p.dat ├── shield_small p.dat ├── ship gun w.dat ├── ship p.dat ├── spaceinv.py ├── spaceinv_scores t.dat └── victory w.dat ├── Texture Mapping ├── Alphaks.JPG ├── Guru.JPG ├── Milky_Way2.jpg ├── README.md ├── Raytracing_01.jpg ├── Raytracing_02.jpg ├── Raytracing_03.jpg ├── Raytracing_04.jpg ├── Raytracing_05.jpg ├── Raytracing_06.jpg ├── Raytracing_07.jpg ├── Raytracing_08.jpg ├── Raytracing_09.jpg ├── Raytracing_10.jpg ├── ShadowBobs.jpg ├── TextureMapping.py ├── TheWorld.jpg └── simplicity.ogg └── Vector3D ├── Readme.md ├── Vector3D part 1 simple 3D rotation.py ├── Vector3D part 2 surfaces and perspective.py ├── Vector3D part 3 visibility and shading.py ├── Vector3D part 4 cityscape.py ├── Vector3D part 5 ground and roads.py ├── Vector3D part 6 shadows.py ├── Vector3D part 7 movement.py ├── Vector3D part 8 finishing.py ├── sinking2.ogg ├── vectordata cityscape.xml ├── vectordata ground and roads.xml └── vectordata.xml /Ball/Ball.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Ball/Ball.py -------------------------------------------------------------------------------- /Ball/Normal_Mercator_map_85deg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Ball/Normal_Mercator_map_85deg.jpg -------------------------------------------------------------------------------- /Ball/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Ball/README.md -------------------------------------------------------------------------------- /Ball/alacrity.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Ball/alacrity.ogg -------------------------------------------------------------------------------- /Cubester/Cubester.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Cubester/Cubester.py -------------------------------------------------------------------------------- /Cubester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Cubester/README.md -------------------------------------------------------------------------------- /Game of Life/Life.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Game of Life/Life.py -------------------------------------------------------------------------------- /Game of Life/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Game of Life/README.md -------------------------------------------------------------------------------- /Jelly Cubes/JellyCubes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Jelly Cubes/JellyCubes.py -------------------------------------------------------------------------------- /Jelly Cubes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Jelly Cubes/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/LICENSE -------------------------------------------------------------------------------- /Landscape/Landscape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Landscape/Landscape.py -------------------------------------------------------------------------------- /Landscape/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Landscape/Readme.md -------------------------------------------------------------------------------- /Maze Solver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Maze Solver/README.md -------------------------------------------------------------------------------- /Maze Solver/maze_solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Maze Solver/maze_solver.py -------------------------------------------------------------------------------- /Maze_Generator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Maze_Generator/README.md -------------------------------------------------------------------------------- /Maze_Generator/maze_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Maze_Generator/maze_generator.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/README.md -------------------------------------------------------------------------------- /RGB Sphere/Normal_Mercator_map_85deg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RGB Sphere/Normal_Mercator_map_85deg.jpg -------------------------------------------------------------------------------- /RGB Sphere/RGB Sphere.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RGB Sphere/RGB Sphere.py -------------------------------------------------------------------------------- /RGB Sphere/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RGB Sphere/Readme.md -------------------------------------------------------------------------------- /RGB Sphere/alacrity.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RGB Sphere/alacrity.ogg -------------------------------------------------------------------------------- /RayCasting_Game/Alphaks2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Alphaks2.JPG -------------------------------------------------------------------------------- /RayCasting_Game/Ball2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Ball2.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Guru2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Guru2.JPG -------------------------------------------------------------------------------- /RayCasting_Game/Milky_Way2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Milky_Way2.jpg -------------------------------------------------------------------------------- /RayCasting_Game/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/README.md -------------------------------------------------------------------------------- /RayCasting_Game/RayCastingGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/RayCastingGame.py -------------------------------------------------------------------------------- /RayCasting_Game/Raycast_bounce.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raycast_bounce.wav -------------------------------------------------------------------------------- /RayCasting_Game/Raycast_collide.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raycast_collide.wav -------------------------------------------------------------------------------- /RayCasting_Game/Raycast_lose.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raycast_lose.wav -------------------------------------------------------------------------------- /RayCasting_Game/Raycast_pling.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raycast_pling.wav -------------------------------------------------------------------------------- /RayCasting_Game/Raycast_start.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raycast_start.wav -------------------------------------------------------------------------------- /RayCasting_Game/Raycast_win.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raycast_win.wav -------------------------------------------------------------------------------- /RayCasting_Game/Raytracing_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raytracing_01.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Raytracing_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raytracing_02.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Raytracing_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raytracing_03.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Raytracing_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raytracing_04.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Raytracing_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raytracing_05.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Raytracing_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raytracing_06.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Raytracing_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raytracing_07.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Raytracing_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raytracing_08.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Raytracing_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raytracing_09.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Raytracing_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Raytracing_10.jpg -------------------------------------------------------------------------------- /RayCasting_Game/ShadowBobs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/ShadowBobs.jpg -------------------------------------------------------------------------------- /RayCasting_Game/TheEnd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/TheEnd.jpg -------------------------------------------------------------------------------- /RayCasting_Game/Vector3D.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/Vector3D.JPG -------------------------------------------------------------------------------- /RayCasting_Game/alacrity.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/alacrity.ogg -------------------------------------------------------------------------------- /RayCasting_Game/goldcoin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/goldcoin2.png -------------------------------------------------------------------------------- /RayCasting_Game/lightbulb3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Game/lightbulb3.png -------------------------------------------------------------------------------- /RayCasting_Map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Map/README.md -------------------------------------------------------------------------------- /RayCasting_Map/RayCasting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Map/RayCasting.py -------------------------------------------------------------------------------- /RayCasting_Map/RayCastingMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Map/RayCastingMap.py -------------------------------------------------------------------------------- /RayCasting_Map/alacrity.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/RayCasting_Map/alacrity.ogg -------------------------------------------------------------------------------- /Sound Vision/Alphaks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Alphaks.jpg -------------------------------------------------------------------------------- /Sound Vision/BoxInABox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/BoxInABox.jpg -------------------------------------------------------------------------------- /Sound Vision/BoxInABox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/BoxInABox.py -------------------------------------------------------------------------------- /Sound Vision/EndCredits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/EndCredits.py -------------------------------------------------------------------------------- /Sound Vision/Guru.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Guru.JPG -------------------------------------------------------------------------------- /Sound Vision/Landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Landscape.jpg -------------------------------------------------------------------------------- /Sound Vision/Landscape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Landscape.py -------------------------------------------------------------------------------- /Sound Vision/MilkyWay.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/MilkyWay.jpg -------------------------------------------------------------------------------- /Sound Vision/MilkyWay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/MilkyWay.py -------------------------------------------------------------------------------- /Sound Vision/Raytracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing.py -------------------------------------------------------------------------------- /Sound Vision/Raytracing_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing_01.jpg -------------------------------------------------------------------------------- /Sound Vision/Raytracing_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing_02.jpg -------------------------------------------------------------------------------- /Sound Vision/Raytracing_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing_03.jpg -------------------------------------------------------------------------------- /Sound Vision/Raytracing_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing_04.jpg -------------------------------------------------------------------------------- /Sound Vision/Raytracing_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing_05.jpg -------------------------------------------------------------------------------- /Sound Vision/Raytracing_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing_06.jpg -------------------------------------------------------------------------------- /Sound Vision/Raytracing_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing_07.jpg -------------------------------------------------------------------------------- /Sound Vision/Raytracing_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing_08.jpg -------------------------------------------------------------------------------- /Sound Vision/Raytracing_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing_09.jpg -------------------------------------------------------------------------------- /Sound Vision/Raytracing_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Raytracing_10.jpg -------------------------------------------------------------------------------- /Sound Vision/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Readme.md -------------------------------------------------------------------------------- /Sound Vision/Reflect.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/Reflect.jpg -------------------------------------------------------------------------------- /Sound Vision/ShadowBobs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/ShadowBobs.jpg -------------------------------------------------------------------------------- /Sound Vision/ShadowBobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/ShadowBobs.py -------------------------------------------------------------------------------- /Sound Vision/SideEffectCube.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/SideEffectCube.jpg -------------------------------------------------------------------------------- /Sound Vision/SideEffectCube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/SideEffectCube.py -------------------------------------------------------------------------------- /Sound Vision/SoundVision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/SoundVision.py -------------------------------------------------------------------------------- /Sound Vision/StripyVectors.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/StripyVectors.jpg -------------------------------------------------------------------------------- /Sound Vision/TheEnd.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/TheEnd.jpg -------------------------------------------------------------------------------- /Sound Vision/TheGlobe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/TheGlobe.jpg -------------------------------------------------------------------------------- /Sound Vision/TheGlobe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/TheGlobe.py -------------------------------------------------------------------------------- /Sound Vision/TheStars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/TheStars.jpg -------------------------------------------------------------------------------- /Sound Vision/TheStars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/TheStars.py -------------------------------------------------------------------------------- /Sound Vision/TheWorld.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/TheWorld.jpg -------------------------------------------------------------------------------- /Sound Vision/TheWorld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/TheWorld.py -------------------------------------------------------------------------------- /Sound Vision/TitleText.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/TitleText.jpg -------------------------------------------------------------------------------- /Sound Vision/TitleText.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/TitleText.py -------------------------------------------------------------------------------- /Sound Vision/cats-eye.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/cats-eye.ogg -------------------------------------------------------------------------------- /Sound Vision/firepower.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/firepower.ogg -------------------------------------------------------------------------------- /Sound Vision/sinking2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/sinking2.ogg -------------------------------------------------------------------------------- /Sound Vision/vectordata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Sound Vision/vectordata.xml -------------------------------------------------------------------------------- /Space Invaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/README.md -------------------------------------------------------------------------------- /Space Invaders/alien 1 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 1 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 10 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 10 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 11 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 11 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 12 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 12 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 2 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 2 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 3 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 3 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 4 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 4 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 5 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 5 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 6 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 6 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 7 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 7 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 8 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 8 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien 9 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien 9 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien boss 1 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien boss 1 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien boss 2 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien boss 2 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien boss 3 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien boss 3 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien boss 4 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien boss 4 p.dat -------------------------------------------------------------------------------- /Space Invaders/alien_ufo p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/alien_ufo p.dat -------------------------------------------------------------------------------- /Space Invaders/bullet_double p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/bullet_double p.dat -------------------------------------------------------------------------------- /Space Invaders/bullet_medium p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/bullet_medium p.dat -------------------------------------------------------------------------------- /Space Invaders/bullet_small p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/bullet_small p.dat -------------------------------------------------------------------------------- /Space Invaders/bullet_ufo p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/bullet_ufo p.dat -------------------------------------------------------------------------------- /Space Invaders/defeat w.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/defeat w.dat -------------------------------------------------------------------------------- /Space Invaders/explo 12 p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/explo 12 p.dat -------------------------------------------------------------------------------- /Space Invaders/explosion alien w.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/explosion alien w.dat -------------------------------------------------------------------------------- /Space Invaders/explosion p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/explosion p.dat -------------------------------------------------------------------------------- /Space Invaders/explosion ship boss w.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/explosion ship boss w.dat -------------------------------------------------------------------------------- /Space Invaders/explosion ufo m.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/explosion ufo m.dat -------------------------------------------------------------------------------- /Space Invaders/miss w.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/miss w.dat -------------------------------------------------------------------------------- /Space Invaders/music theme o.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/music theme o.dat -------------------------------------------------------------------------------- /Space Invaders/pling w.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/pling w.dat -------------------------------------------------------------------------------- /Space Invaders/power_up p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/power_up p.dat -------------------------------------------------------------------------------- /Space Invaders/shield_small p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/shield_small p.dat -------------------------------------------------------------------------------- /Space Invaders/ship gun w.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/ship gun w.dat -------------------------------------------------------------------------------- /Space Invaders/ship p.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/ship p.dat -------------------------------------------------------------------------------- /Space Invaders/spaceinv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/spaceinv.py -------------------------------------------------------------------------------- /Space Invaders/spaceinv_scores t.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/spaceinv_scores t.dat -------------------------------------------------------------------------------- /Space Invaders/victory w.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Space Invaders/victory w.dat -------------------------------------------------------------------------------- /Texture Mapping/Alphaks.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Alphaks.JPG -------------------------------------------------------------------------------- /Texture Mapping/Guru.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Guru.JPG -------------------------------------------------------------------------------- /Texture Mapping/Milky_Way2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Milky_Way2.jpg -------------------------------------------------------------------------------- /Texture Mapping/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/README.md -------------------------------------------------------------------------------- /Texture Mapping/Raytracing_01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Raytracing_01.jpg -------------------------------------------------------------------------------- /Texture Mapping/Raytracing_02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Raytracing_02.jpg -------------------------------------------------------------------------------- /Texture Mapping/Raytracing_03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Raytracing_03.jpg -------------------------------------------------------------------------------- /Texture Mapping/Raytracing_04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Raytracing_04.jpg -------------------------------------------------------------------------------- /Texture Mapping/Raytracing_05.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Raytracing_05.jpg -------------------------------------------------------------------------------- /Texture Mapping/Raytracing_06.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Raytracing_06.jpg -------------------------------------------------------------------------------- /Texture Mapping/Raytracing_07.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Raytracing_07.jpg -------------------------------------------------------------------------------- /Texture Mapping/Raytracing_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Raytracing_08.jpg -------------------------------------------------------------------------------- /Texture Mapping/Raytracing_09.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Raytracing_09.jpg -------------------------------------------------------------------------------- /Texture Mapping/Raytracing_10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/Raytracing_10.jpg -------------------------------------------------------------------------------- /Texture Mapping/ShadowBobs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/ShadowBobs.jpg -------------------------------------------------------------------------------- /Texture Mapping/TextureMapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/TextureMapping.py -------------------------------------------------------------------------------- /Texture Mapping/TheWorld.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/TheWorld.jpg -------------------------------------------------------------------------------- /Texture Mapping/simplicity.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Texture Mapping/simplicity.ogg -------------------------------------------------------------------------------- /Vector3D/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/Readme.md -------------------------------------------------------------------------------- /Vector3D/Vector3D part 1 simple 3D rotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/Vector3D part 1 simple 3D rotation.py -------------------------------------------------------------------------------- /Vector3D/Vector3D part 2 surfaces and perspective.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/Vector3D part 2 surfaces and perspective.py -------------------------------------------------------------------------------- /Vector3D/Vector3D part 3 visibility and shading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/Vector3D part 3 visibility and shading.py -------------------------------------------------------------------------------- /Vector3D/Vector3D part 4 cityscape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/Vector3D part 4 cityscape.py -------------------------------------------------------------------------------- /Vector3D/Vector3D part 5 ground and roads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/Vector3D part 5 ground and roads.py -------------------------------------------------------------------------------- /Vector3D/Vector3D part 6 shadows.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/Vector3D part 6 shadows.py -------------------------------------------------------------------------------- /Vector3D/Vector3D part 7 movement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/Vector3D part 7 movement.py -------------------------------------------------------------------------------- /Vector3D/Vector3D part 8 finishing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/Vector3D part 8 finishing.py -------------------------------------------------------------------------------- /Vector3D/sinking2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/sinking2.ogg -------------------------------------------------------------------------------- /Vector3D/vectordata cityscape.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/vectordata cityscape.xml -------------------------------------------------------------------------------- /Vector3D/vectordata ground and roads.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/vectordata ground and roads.xml -------------------------------------------------------------------------------- /Vector3D/vectordata.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeque92/RealTime3DwithPython/HEAD/Vector3D/vectordata.xml --------------------------------------------------------------------------------