├── ObjLoader.py ├── README.md ├── ShaderLoader.py ├── main.py ├── res ├── cube.obj └── cube_texture.jpg ├── shaders ├── video_14_frag.fs ├── video_14_vert.vs ├── video_17_frag.fs ├── video_17_vert.vs ├── video_18_frag.fs └── video_18_vert.vs ├── video_06_quad.py ├── video_07_cube.py ├── video_09_texturing_quad.py ├── video_10_using_PNGs.py ├── video_11_texturing_cube.py ├── video_12_resizable_viewport.py ├── video_13_perspective_projection.py ├── video_14_shader_loader.py ├── video_17_obj_file_loading.py └── video_18_simple_light.py /ObjLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/ObjLoader.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/README.md -------------------------------------------------------------------------------- /ShaderLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/ShaderLoader.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/main.py -------------------------------------------------------------------------------- /res/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/res/cube.obj -------------------------------------------------------------------------------- /res/cube_texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/res/cube_texture.jpg -------------------------------------------------------------------------------- /shaders/video_14_frag.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/shaders/video_14_frag.fs -------------------------------------------------------------------------------- /shaders/video_14_vert.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/shaders/video_14_vert.vs -------------------------------------------------------------------------------- /shaders/video_17_frag.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/shaders/video_17_frag.fs -------------------------------------------------------------------------------- /shaders/video_17_vert.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/shaders/video_17_vert.vs -------------------------------------------------------------------------------- /shaders/video_18_frag.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/shaders/video_18_frag.fs -------------------------------------------------------------------------------- /shaders/video_18_vert.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/shaders/video_18_vert.vs -------------------------------------------------------------------------------- /video_06_quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/video_06_quad.py -------------------------------------------------------------------------------- /video_07_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/video_07_cube.py -------------------------------------------------------------------------------- /video_09_texturing_quad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/video_09_texturing_quad.py -------------------------------------------------------------------------------- /video_10_using_PNGs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/video_10_using_PNGs.py -------------------------------------------------------------------------------- /video_11_texturing_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/video_11_texturing_cube.py -------------------------------------------------------------------------------- /video_12_resizable_viewport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/video_12_resizable_viewport.py -------------------------------------------------------------------------------- /video_13_perspective_projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/video_13_perspective_projection.py -------------------------------------------------------------------------------- /video_14_shader_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/video_14_shader_loader.py -------------------------------------------------------------------------------- /video_17_obj_file_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/video_17_obj_file_loading.py -------------------------------------------------------------------------------- /video_18_simple_light.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/totex/PyOpenGL_tutorials/HEAD/video_18_simple_light.py --------------------------------------------------------------------------------