├── README.md ├── hw0 ├── CMakeLists.txt ├── build │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.10.2 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── TargetDirectories.txt │ │ ├── Transformation.dir │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ ├── main.cpp.o │ │ │ └── progress.make │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ └── progress.marks │ ├── Makefile │ ├── Transformation │ └── cmake_install.cmake ├── main.cpp └── pa0.pdf ├── hw1 ├── Assignment1.pdf ├── CMakeLists.txt ├── Triangle.cpp ├── Triangle.hpp ├── build │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.10.2 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── Rasterizer.dir │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── Triangle.cpp.o │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ ├── main.cpp.o │ │ │ ├── progress.make │ │ │ └── rasterizer.cpp.o │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ └── progress.marks │ ├── Makefile │ ├── Rasterizer │ └── cmake_install.cmake ├── main.cpp ├── rasterizer.cpp └── rasterizer.hpp ├── hw2 ├── .vscode │ └── settings.json ├── Assignment2.pdf ├── CMakeLists.txt ├── Triangle.cpp ├── Triangle.hpp ├── build │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.10.2 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── Rasterizer.dir │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── Triangle.cpp.o │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ ├── main.cpp.o │ │ │ ├── progress.make │ │ │ └── rasterizer.cpp.o │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ └── progress.marks │ ├── Makefile │ ├── Rasterizer │ └── cmake_install.cmake ├── global.hpp ├── main.cpp ├── rasterizer.cpp └── rasterizer.hpp ├── hw3 ├── .vscode │ └── settings.json ├── Assignment3.pdf └── Code │ ├── CMakeLists.txt │ ├── OBJ_Loader.h │ ├── Shader.hpp │ ├── Texture.cpp │ ├── Texture.hpp │ ├── Triangle.cpp │ ├── Triangle.hpp │ ├── build │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.10.2 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── Rasterizer.dir │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── Texture.cpp.o │ │ │ ├── Triangle.cpp.o │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ ├── main.cpp.o │ │ │ ├── progress.make │ │ │ └── rasterizer.cpp.o │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ └── progress.marks │ ├── Makefile │ ├── Rasterizer │ ├── cmake_install.cmake │ └── output.png │ ├── global.hpp │ ├── main.cpp │ ├── models │ ├── Crate │ │ ├── Crate1.3ds │ │ ├── Crate1.blend │ │ ├── Crate1.mtl │ │ ├── Crate1.obj │ │ ├── CrateImage1.JPG │ │ ├── CrateImage2.JPG │ │ └── crate_1.jpg │ ├── bunny │ │ └── bunny.obj │ ├── cube │ │ ├── cube.mtl │ │ ├── cube.obj │ │ ├── wall.tif │ │ └── wall1.tif │ ├── rock │ │ ├── rock.mtl │ │ ├── rock.obj │ │ └── rock.png │ └── spot │ │ ├── README.txt │ │ ├── hmap.jpg │ │ ├── spot_control_mesh.obj │ │ ├── spot_quadrangulated.obj │ │ ├── spot_texture.png │ │ ├── spot_texture.svg │ │ ├── spot_triangulated.obj │ │ └── spot_triangulated_good.obj │ ├── rasterizer.cpp │ └── rasterizer.hpp ├── hw4 ├── assignment4.pdf └── code │ ├── .vscode │ └── settings.json │ ├── CMakeLists.txt │ ├── build │ ├── BezierCurve │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.10.2 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── BezierCurve.dir │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ ├── main.cpp.o │ │ │ └── progress.make │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ └── progress.marks │ ├── Makefile │ └── cmake_install.cmake │ └── main.cpp ├── hw5 ├── Code │ ├── CMakeLists.txt │ ├── Light.hpp │ ├── Object.hpp │ ├── Renderer.cpp │ ├── Renderer.hpp │ ├── Scene.cpp │ ├── Scene.hpp │ ├── Sphere.hpp │ ├── Triangle.hpp │ ├── Vector.hpp │ ├── build │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.10.2 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── a.out │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── a.out │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── CMakeOutput.log │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── RayTracing.dir │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── Renderer.cpp.o │ │ │ │ ├── Scene.cpp.o │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ ├── main.cpp.o │ │ │ │ └── progress.make │ │ │ ├── TargetDirectories.txt │ │ │ ├── cmake.check_cache │ │ │ ├── feature_tests.bin │ │ │ ├── feature_tests.c │ │ │ ├── feature_tests.cxx │ │ │ └── progress.marks │ │ ├── Makefile │ │ ├── RayTracing │ │ └── cmake_install.cmake │ ├── global.hpp │ └── main.cpp └── assignment5.pdf ├── hw6 ├── .DS_Store ├── Assignment6 │ ├── .vscode │ │ └── settings.json │ ├── AreaLight.hpp │ ├── BVH.cpp │ ├── BVH.hpp │ ├── Bounds3.hpp │ ├── CMakeLists.txt │ ├── Intersection.hpp │ ├── Light.hpp │ ├── Material.hpp │ ├── OBJ_Loader.hpp │ ├── Object.hpp │ ├── README.md │ ├── Ray.hpp │ ├── Renderer.cpp │ ├── Renderer.hpp │ ├── Scene.cpp │ ├── Scene.hpp │ ├── Sphere.hpp │ ├── Triangle.hpp │ ├── Vector.cpp │ ├── Vector.hpp │ ├── build │ │ ├── CMakeCache.txt │ │ ├── CMakeFiles │ │ │ ├── 3.10.2 │ │ │ │ ├── CMakeCCompiler.cmake │ │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ │ ├── CMakeSystem.cmake │ │ │ │ ├── CompilerIdC │ │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ │ └── a.out │ │ │ │ └── CompilerIdCXX │ │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ │ └── a.out │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── CMakeOutput.log │ │ │ ├── Makefile.cmake │ │ │ ├── Makefile2 │ │ │ ├── RayTracing.dir │ │ │ │ ├── BVH.cpp.o │ │ │ │ ├── CXX.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── Renderer.cpp.o │ │ │ │ ├── Scene.cpp.o │ │ │ │ ├── Vector.cpp.o │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── link.txt │ │ │ │ ├── main.cpp.o │ │ │ │ └── progress.make │ │ │ ├── TargetDirectories.txt │ │ │ ├── cmake.check_cache │ │ │ ├── feature_tests.bin │ │ │ ├── feature_tests.c │ │ │ ├── feature_tests.cxx │ │ │ └── progress.marks │ │ ├── Makefile │ │ ├── RayTracing │ │ └── cmake_install.cmake │ ├── global.hpp │ ├── main.cpp │ └── models │ │ └── bunny │ │ └── bunny.obj └── PA6.pdf ├── hw7 ├── .DS_Store ├── Assignment7.pdf └── Assignment7 │ ├── .DS_Store │ ├── .vscode │ └── settings.json │ ├── AreaLight.hpp │ ├── BVH.cpp │ ├── BVH.hpp │ ├── Bounds3.hpp │ ├── CMakeLists.txt │ ├── Intersection.hpp │ ├── Light.hpp │ ├── Material.hpp │ ├── OBJ_Loader.hpp │ ├── Object.hpp │ ├── README.md │ ├── Ray.hpp │ ├── Renderer.cpp │ ├── Renderer.hpp │ ├── Scene.cpp │ ├── Scene.hpp │ ├── Sphere.hpp │ ├── Triangle.hpp │ ├── Vector.cpp │ ├── Vector.hpp │ ├── build │ ├── CMakeCache.txt │ ├── CMakeFiles │ │ ├── 3.10.2 │ │ │ ├── CMakeCCompiler.cmake │ │ │ ├── CMakeCXXCompiler.cmake │ │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ │ ├── CMakeSystem.cmake │ │ │ ├── CompilerIdC │ │ │ │ ├── CMakeCCompilerId.c │ │ │ │ └── a.out │ │ │ └── CompilerIdCXX │ │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ │ └── a.out │ │ ├── CMakeDirectoryInformation.cmake │ │ ├── CMakeOutput.log │ │ ├── Makefile.cmake │ │ ├── Makefile2 │ │ ├── RayTracing.dir │ │ │ ├── BVH.cpp.o │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── Renderer.cpp.o │ │ │ ├── Scene.cpp.o │ │ │ ├── Vector.cpp.o │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ ├── main.cpp.o │ │ │ └── progress.make │ │ ├── TargetDirectories.txt │ │ ├── cmake.check_cache │ │ ├── feature_tests.bin │ │ ├── feature_tests.c │ │ ├── feature_tests.cxx │ │ └── progress.marks │ ├── Makefile │ ├── RayTracing │ └── cmake_install.cmake │ ├── global.hpp │ ├── main.cpp │ └── models │ ├── bunny │ └── bunny.obj │ └── cornellbox │ ├── floor.obj │ ├── left.obj │ ├── light.obj │ ├── right.obj │ ├── shortbox.obj │ └── tallbox.obj └── hw8 ├── CGL ├── .gitignore ├── CMakeLists.txt ├── cmake │ └── modules │ │ └── FindGLEW.cmake ├── deps │ ├── glew │ │ ├── CMakeLists.txt │ │ ├── LICENSE.txt │ │ ├── include │ │ │ └── GL │ │ │ │ ├── glew.h │ │ │ │ ├── glxew.h │ │ │ │ └── wglew.h │ │ └── src │ │ │ ├── glew.c │ │ │ ├── glewinfo.c │ │ │ └── visualinfo.c │ └── glfw │ │ ├── CMake │ │ ├── AppleInfo.plist │ │ ├── amd64-mingw32msvc.cmake │ │ ├── i586-mingw32msvc.cmake │ │ ├── i686-pc-mingw32.cmake │ │ ├── i686-w64-mingw32.cmake │ │ ├── modules │ │ │ ├── FindEGL.cmake │ │ │ ├── FindGLESv1.cmake │ │ │ ├── FindGLESv2.cmake │ │ │ ├── FindMir.cmake │ │ │ ├── FindWayland.cmake │ │ │ └── FindXKBCommon.cmake │ │ └── x86_64-w64-mingw32.cmake │ │ ├── CMakeLists.txt │ │ ├── COPYING.txt │ │ ├── cmake_uninstall.cmake.in │ │ ├── deps │ │ ├── EGL │ │ │ └── eglext.h │ │ ├── GL │ │ │ ├── glext.h │ │ │ ├── glxext.h │ │ │ └── wglext.h │ │ ├── KHR │ │ │ └── khrplatform.h │ │ ├── getopt.c │ │ ├── getopt.h │ │ ├── glad.c │ │ ├── glad │ │ │ └── glad.h │ │ ├── tinycthread.c │ │ └── tinycthread.h │ │ ├── docs │ │ ├── CMakeLists.txt │ │ ├── Doxyfile.in │ │ ├── DoxygenLayout.xml │ │ ├── build.dox │ │ ├── compat.dox │ │ ├── compile.dox │ │ ├── context.dox │ │ ├── extra.css │ │ ├── extra.less │ │ ├── footer.html │ │ ├── header.html │ │ ├── html │ │ │ ├── annotated.html │ │ │ ├── bc_s.png │ │ │ ├── bdwn.png │ │ │ ├── bug.html │ │ │ ├── build.html │ │ │ ├── build_8dox.html │ │ │ ├── classes.html │ │ │ ├── closed.png │ │ │ ├── compat.html │ │ │ ├── compat_8dox.html │ │ │ ├── compile.html │ │ │ ├── compile_8dox.html │ │ │ ├── context.html │ │ │ ├── context_8dox.html │ │ │ ├── dir_2424ad704b206c89082f9408cac4dea1.html │ │ │ ├── dir_cad64ac143687238294d0ef1c4308bc1.html │ │ │ ├── dir_d0d9ff8e306589526ff939d1e8a51d35.html │ │ │ ├── doxygen.css │ │ │ ├── doxygen.png │ │ │ ├── dynsections.js │ │ │ ├── extra.css │ │ │ ├── files.html │ │ │ ├── ftv2blank.png │ │ │ ├── ftv2cl.png │ │ │ ├── ftv2doc.png │ │ │ ├── ftv2folderclosed.png │ │ │ ├── ftv2folderopen.png │ │ │ ├── ftv2lastnode.png │ │ │ ├── ftv2link.png │ │ │ ├── ftv2mlastnode.png │ │ │ ├── ftv2mnode.png │ │ │ ├── ftv2mo.png │ │ │ ├── ftv2node.png │ │ │ ├── ftv2ns.png │ │ │ ├── ftv2plastnode.png │ │ │ ├── ftv2pnode.png │ │ │ ├── ftv2splitbar.png │ │ │ ├── ftv2vertline.png │ │ │ ├── functions.html │ │ │ ├── functions_vars.html │ │ │ ├── glfw3_8h.html │ │ │ ├── glfw3_8h_source.html │ │ │ ├── glfw3native_8h.html │ │ │ ├── glfw3native_8h_source.html │ │ │ ├── globals.html │ │ │ ├── globals_b.html │ │ │ ├── globals_c.html │ │ │ ├── globals_d.html │ │ │ ├── globals_defs.html │ │ │ ├── globals_defs_b.html │ │ │ ├── globals_defs_c.html │ │ │ ├── globals_defs_d.html │ │ │ ├── globals_defs_f.html │ │ │ ├── globals_defs_g.html │ │ │ ├── globals_defs_h.html │ │ │ ├── globals_defs_i.html │ │ │ ├── globals_defs_j.html │ │ │ ├── globals_defs_k.html │ │ │ ├── globals_defs_l.html │ │ │ ├── globals_defs_m.html │ │ │ ├── globals_defs_n.html │ │ │ ├── globals_defs_o.html │ │ │ ├── globals_defs_p.html │ │ │ ├── globals_defs_r.html │ │ │ ├── globals_defs_s.html │ │ │ ├── globals_defs_v.html │ │ │ ├── globals_e.html │ │ │ ├── globals_f.html │ │ │ ├── globals_func.html │ │ │ ├── globals_g.html │ │ │ ├── globals_h.html │ │ │ ├── globals_i.html │ │ │ ├── globals_j.html │ │ │ ├── globals_k.html │ │ │ ├── globals_l.html │ │ │ ├── globals_m.html │ │ │ ├── globals_n.html │ │ │ ├── globals_o.html │ │ │ ├── globals_p.html │ │ │ ├── globals_r.html │ │ │ ├── globals_s.html │ │ │ ├── globals_t.html │ │ │ ├── globals_type.html │ │ │ ├── globals_v.html │ │ │ ├── globals_w.html │ │ │ ├── group__buttons.html │ │ │ ├── group__context.html │ │ │ ├── group__errors.html │ │ │ ├── group__init.html │ │ │ ├── group__input.html │ │ │ ├── group__joysticks.html │ │ │ ├── group__keys.html │ │ │ ├── group__mods.html │ │ │ ├── group__monitor.html │ │ │ ├── group__native.html │ │ │ ├── group__shapes.html │ │ │ ├── group__window.html │ │ │ ├── index.html │ │ │ ├── input.html │ │ │ ├── input_8dox.html │ │ │ ├── intro.html │ │ │ ├── intro_8dox.html │ │ │ ├── jquery.js │ │ │ ├── main_8dox.html │ │ │ ├── modules.html │ │ │ ├── monitor.html │ │ │ ├── monitor_8dox.html │ │ │ ├── moving.html │ │ │ ├── moving_8dox.html │ │ │ ├── nav_f.png │ │ │ ├── nav_g.png │ │ │ ├── nav_h.png │ │ │ ├── news.html │ │ │ ├── news_8dox.html │ │ │ ├── open.png │ │ │ ├── pages.html │ │ │ ├── quick.html │ │ │ ├── quick_8dox.html │ │ │ ├── rift.html │ │ │ ├── rift_8dox.html │ │ │ ├── search │ │ │ │ ├── all_0.html │ │ │ │ ├── all_0.js │ │ │ │ ├── all_1.html │ │ │ │ ├── all_1.js │ │ │ │ ├── all_2.html │ │ │ │ ├── all_2.js │ │ │ │ ├── all_3.html │ │ │ │ ├── all_3.js │ │ │ │ ├── all_4.html │ │ │ │ ├── all_4.js │ │ │ │ ├── all_5.html │ │ │ │ ├── all_5.js │ │ │ │ ├── all_6.html │ │ │ │ ├── all_6.js │ │ │ │ ├── all_7.html │ │ │ │ ├── all_7.js │ │ │ │ ├── all_8.html │ │ │ │ ├── all_8.js │ │ │ │ ├── all_9.html │ │ │ │ ├── all_9.js │ │ │ │ ├── all_a.html │ │ │ │ ├── all_a.js │ │ │ │ ├── all_b.html │ │ │ │ ├── all_b.js │ │ │ │ ├── all_c.html │ │ │ │ ├── all_c.js │ │ │ │ ├── all_d.html │ │ │ │ ├── all_d.js │ │ │ │ ├── all_e.html │ │ │ │ ├── all_e.js │ │ │ │ ├── all_f.html │ │ │ │ ├── all_f.js │ │ │ │ ├── classes_0.html │ │ │ │ ├── classes_0.js │ │ │ │ ├── close.png │ │ │ │ ├── defines_0.html │ │ │ │ ├── defines_0.js │ │ │ │ ├── files_0.html │ │ │ │ ├── files_0.js │ │ │ │ ├── files_1.html │ │ │ │ ├── files_1.js │ │ │ │ ├── files_2.html │ │ │ │ ├── files_2.js │ │ │ │ ├── files_3.html │ │ │ │ ├── files_3.js │ │ │ │ ├── files_4.html │ │ │ │ ├── files_4.js │ │ │ │ ├── files_5.html │ │ │ │ ├── files_5.js │ │ │ │ ├── files_6.html │ │ │ │ ├── files_6.js │ │ │ │ ├── files_7.html │ │ │ │ ├── files_7.js │ │ │ │ ├── files_8.html │ │ │ │ ├── files_8.js │ │ │ │ ├── functions_0.html │ │ │ │ ├── functions_0.js │ │ │ │ ├── groups_0.html │ │ │ │ ├── groups_0.js │ │ │ │ ├── groups_1.html │ │ │ │ ├── groups_1.js │ │ │ │ ├── groups_2.html │ │ │ │ ├── groups_2.js │ │ │ │ ├── groups_3.html │ │ │ │ ├── groups_3.js │ │ │ │ ├── groups_4.html │ │ │ │ ├── groups_4.js │ │ │ │ ├── groups_5.html │ │ │ │ ├── groups_5.js │ │ │ │ ├── groups_6.html │ │ │ │ ├── groups_6.js │ │ │ │ ├── groups_7.html │ │ │ │ ├── groups_7.js │ │ │ │ ├── groups_8.html │ │ │ │ ├── groups_8.js │ │ │ │ ├── mag_sel.png │ │ │ │ ├── nomatches.html │ │ │ │ ├── pages_0.html │ │ │ │ ├── pages_0.js │ │ │ │ ├── pages_1.html │ │ │ │ ├── pages_1.js │ │ │ │ ├── pages_2.html │ │ │ │ ├── pages_2.js │ │ │ │ ├── pages_3.html │ │ │ │ ├── pages_3.js │ │ │ │ ├── pages_4.html │ │ │ │ ├── pages_4.js │ │ │ │ ├── pages_5.html │ │ │ │ ├── pages_5.js │ │ │ │ ├── pages_6.html │ │ │ │ ├── pages_6.js │ │ │ │ ├── pages_7.html │ │ │ │ ├── pages_7.js │ │ │ │ ├── pages_8.html │ │ │ │ ├── pages_8.js │ │ │ │ ├── search.css │ │ │ │ ├── search.js │ │ │ │ ├── search_l.png │ │ │ │ ├── search_m.png │ │ │ │ ├── search_r.png │ │ │ │ ├── typedefs_0.html │ │ │ │ ├── typedefs_0.js │ │ │ │ ├── variables_0.html │ │ │ │ ├── variables_0.js │ │ │ │ ├── variables_1.html │ │ │ │ ├── variables_1.js │ │ │ │ ├── variables_2.html │ │ │ │ ├── variables_2.js │ │ │ │ ├── variables_3.html │ │ │ │ ├── variables_3.js │ │ │ │ ├── variables_4.html │ │ │ │ ├── variables_4.js │ │ │ │ ├── variables_5.html │ │ │ │ ├── variables_5.js │ │ │ │ ├── variables_6.html │ │ │ │ └── variables_6.js │ │ │ ├── spaces.svg │ │ │ ├── structGLFWgammaramp.html │ │ │ ├── structGLFWimage.html │ │ │ ├── structGLFWvidmode.html │ │ │ ├── sync_off.png │ │ │ ├── sync_on.png │ │ │ ├── tab_a.png │ │ │ ├── tab_b.png │ │ │ ├── tab_h.png │ │ │ ├── tab_s.png │ │ │ ├── tabs.css │ │ │ ├── window.html │ │ │ └── window_8dox.html │ │ ├── input.dox │ │ ├── internal.dox │ │ ├── intro.dox │ │ ├── main.dox │ │ ├── monitor.dox │ │ ├── moving.dox │ │ ├── news.dox │ │ ├── quick.dox │ │ ├── rift.dox │ │ ├── spaces.svg │ │ └── window.dox │ │ ├── examples │ │ ├── CMakeLists.txt │ │ ├── boing.c │ │ ├── gears.c │ │ ├── heightmap.c │ │ ├── particles.c │ │ ├── simple.c │ │ ├── splitview.c │ │ └── wave.c │ │ ├── include │ │ └── GLFW │ │ │ ├── glfw3.h │ │ │ └── glfw3native.h │ │ ├── src │ │ ├── CMakeLists.txt │ │ ├── cocoa_init.m │ │ ├── cocoa_monitor.m │ │ ├── cocoa_platform.h │ │ ├── cocoa_window.m │ │ ├── context.c │ │ ├── egl_context.c │ │ ├── egl_context.h │ │ ├── glfw3.pc.in │ │ ├── glfw3Config.cmake.in │ │ ├── glfw_config.h.in │ │ ├── glx_context.c │ │ ├── glx_context.h │ │ ├── init.c │ │ ├── input.c │ │ ├── internal.h │ │ ├── iokit_joystick.h │ │ ├── iokit_joystick.m │ │ ├── linux_joystick.c │ │ ├── linux_joystick.h │ │ ├── mach_time.c │ │ ├── mir_init.c │ │ ├── mir_monitor.c │ │ ├── mir_platform.h │ │ ├── mir_window.c │ │ ├── monitor.c │ │ ├── nsgl_context.h │ │ ├── nsgl_context.m │ │ ├── posix_time.c │ │ ├── posix_time.h │ │ ├── posix_tls.c │ │ ├── posix_tls.h │ │ ├── wgl_context.c │ │ ├── wgl_context.h │ │ ├── win32_init.c │ │ ├── win32_monitor.c │ │ ├── win32_platform.h │ │ ├── win32_time.c │ │ ├── win32_tls.c │ │ ├── win32_tls.h │ │ ├── win32_window.c │ │ ├── window.c │ │ ├── winmm_joystick.c │ │ ├── winmm_joystick.h │ │ ├── wl_init.c │ │ ├── wl_monitor.c │ │ ├── wl_platform.h │ │ ├── wl_window.c │ │ ├── x11_init.c │ │ ├── x11_monitor.c │ │ ├── x11_platform.h │ │ ├── x11_window.c │ │ ├── xkb_unicode.c │ │ └── xkb_unicode.h │ │ └── tests │ │ ├── CMakeLists.txt │ │ ├── accuracy.c │ │ ├── clipboard.c │ │ ├── cursor.c │ │ ├── cursoranim.c │ │ ├── defaults.c │ │ ├── empty.c │ │ ├── events.c │ │ ├── fsaa.c │ │ ├── gamma.c │ │ ├── glfwinfo.c │ │ ├── iconify.c │ │ ├── joysticks.c │ │ ├── monitors.c │ │ ├── peter.c │ │ ├── reopen.c │ │ ├── sharing.c │ │ ├── tearing.c │ │ ├── threads.c │ │ ├── title.c │ │ └── windows.c ├── examples │ ├── CMakeLists.txt │ ├── text.cpp │ └── triangle.cpp ├── include │ ├── CGL │ │ ├── CGL.h │ │ ├── base64.h │ │ ├── color.h │ │ ├── complex.h │ │ ├── matrix3x3.h │ │ ├── matrix4x4.h │ │ ├── misc.h │ │ ├── osdtext.h │ │ ├── quaternion.h │ │ ├── renderer.h │ │ ├── tinyxml2.h │ │ ├── vector2D.h │ │ ├── vector3D.h │ │ ├── vector4D.h │ │ └── viewer.h │ ├── GL │ │ ├── glew.h │ │ ├── glxew.h │ │ └── wglew.h │ └── GLFW │ │ ├── glfw3.h │ │ └── glfw3native.h ├── src │ ├── CGL.h │ ├── CMakeLists.txt │ ├── base64.cpp │ ├── base64.h │ ├── color.cpp │ ├── color.h │ ├── complex.cpp │ ├── complex.h │ ├── console.h │ ├── matrix3x3.cpp │ ├── matrix3x3.h │ ├── matrix4x4.cpp │ ├── matrix4x4.h │ ├── osdfont.c │ ├── osdtext.cpp │ ├── osdtext.h │ ├── quaternion.cpp │ ├── quaternion.h │ ├── renderer.h │ ├── tinyxml2.cpp │ ├── tinyxml2.h │ ├── vector2D.cpp │ ├── vector2D.h │ ├── vector3D.cpp │ ├── vector3D.h │ ├── vector4D.cpp │ ├── vector4D.h │ ├── viewer.cpp │ └── viewer.h └── tests │ ├── CMakeLists.txt │ └── osd.cpp ├── CMakeLists.txt ├── assignment8.pdf ├── build ├── CGL │ ├── CMakeFiles │ │ ├── CMakeDirectoryInformation.cmake │ │ └── progress.marks │ ├── Makefile │ ├── cmake_install.cmake │ ├── deps │ │ ├── glew │ │ │ ├── CMakeFiles │ │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ │ ├── glew.dir │ │ │ │ │ ├── C.includecache │ │ │ │ │ ├── DependInfo.cmake │ │ │ │ │ ├── build.make │ │ │ │ │ ├── cmake_clean.cmake │ │ │ │ │ ├── cmake_clean_target.cmake │ │ │ │ │ ├── depend.internal │ │ │ │ │ ├── depend.make │ │ │ │ │ ├── flags.make │ │ │ │ │ ├── link.txt │ │ │ │ │ ├── progress.make │ │ │ │ │ └── src │ │ │ │ │ │ ├── glew.c.o │ │ │ │ │ │ ├── glewinfo.c.o │ │ │ │ │ │ └── visualinfo.c.o │ │ │ │ └── progress.marks │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ └── libglew.a │ │ └── glfw │ │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── Export │ │ │ │ └── lib │ │ │ │ │ └── cmake │ │ │ │ │ └── glfw │ │ │ │ │ ├── glfwTargets-noconfig.cmake │ │ │ │ │ └── glfwTargets.cmake │ │ │ ├── progress.marks │ │ │ └── uninstall.dir │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ └── progress.make │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ ├── cmake_uninstall.cmake │ │ │ └── src │ │ │ ├── CMakeFiles │ │ │ ├── CMakeDirectoryInformation.cmake │ │ │ ├── glfw.dir │ │ │ │ ├── C.includecache │ │ │ │ ├── DependInfo.cmake │ │ │ │ ├── build.make │ │ │ │ ├── cmake_clean.cmake │ │ │ │ ├── cmake_clean_target.cmake │ │ │ │ ├── context.c.o │ │ │ │ ├── depend.internal │ │ │ │ ├── depend.make │ │ │ │ ├── flags.make │ │ │ │ ├── glx_context.c.o │ │ │ │ ├── init.c.o │ │ │ │ ├── input.c.o │ │ │ │ ├── link.txt │ │ │ │ ├── linux_joystick.c.o │ │ │ │ ├── monitor.c.o │ │ │ │ ├── posix_time.c.o │ │ │ │ ├── posix_tls.c.o │ │ │ │ ├── progress.make │ │ │ │ ├── window.c.o │ │ │ │ ├── x11_init.c.o │ │ │ │ ├── x11_monitor.c.o │ │ │ │ ├── x11_window.c.o │ │ │ │ └── xkb_unicode.c.o │ │ │ └── progress.marks │ │ │ ├── Makefile │ │ │ ├── cmake_install.cmake │ │ │ ├── glfw3.pc │ │ │ ├── glfw3Config.cmake │ │ │ ├── glfw3ConfigVersion.cmake │ │ │ ├── glfw_config.h │ │ │ └── libglfw3.a │ └── src │ │ ├── CMakeFiles │ │ ├── CGL.dir │ │ │ ├── C.includecache │ │ │ ├── CXX.includecache │ │ │ ├── DependInfo.cmake │ │ │ ├── base64.cpp.o │ │ │ ├── build.make │ │ │ ├── cmake_clean.cmake │ │ │ ├── cmake_clean_target.cmake │ │ │ ├── color.cpp.o │ │ │ ├── complex.cpp.o │ │ │ ├── depend.internal │ │ │ ├── depend.make │ │ │ ├── flags.make │ │ │ ├── link.txt │ │ │ ├── matrix3x3.cpp.o │ │ │ ├── matrix4x4.cpp.o │ │ │ ├── osdfont.c.o │ │ │ ├── osdtext.cpp.o │ │ │ ├── progress.make │ │ │ ├── quaternion.cpp.o │ │ │ ├── tinyxml2.cpp.o │ │ │ ├── vector2D.cpp.o │ │ │ ├── vector3D.cpp.o │ │ │ ├── vector4D.cpp.o │ │ │ └── viewer.cpp.o │ │ ├── CMakeDirectoryInformation.cmake │ │ └── progress.marks │ │ ├── Makefile │ │ ├── cmake_install.cmake │ │ └── libCGL.a ├── CMakeCache.txt ├── CMakeFiles │ ├── 3.10.2 │ │ ├── CMakeCCompiler.cmake │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_C.bin │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeSystem.cmake │ │ ├── CompilerIdC │ │ │ ├── CMakeCCompilerId.c │ │ │ └── a.out │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── a.out │ ├── CMakeDirectoryInformation.cmake │ ├── CMakeError.log │ ├── CMakeOutput.log │ ├── CMakeRuleHashes.txt │ ├── Makefile.cmake │ ├── Makefile2 │ ├── TargetDirectories.txt │ ├── cmake.check_cache │ ├── feature_tests.bin │ ├── feature_tests.c │ ├── feature_tests.cxx │ └── progress.marks ├── Makefile ├── cmake_install.cmake ├── ropesim └── src │ ├── CMakeFiles │ ├── CMakeDirectoryInformation.cmake │ ├── progress.marks │ └── ropesim.dir │ │ ├── CXX.includecache │ │ ├── DependInfo.cmake │ │ ├── application.cpp.o │ │ ├── build.make │ │ ├── cmake_clean.cmake │ │ ├── depend.internal │ │ ├── depend.make │ │ ├── flags.make │ │ ├── link.txt │ │ ├── main.cpp.o │ │ ├── progress.make │ │ └── rope.cpp.o │ ├── Makefile │ └── cmake_install.cmake └── src ├── CMakeLists.txt ├── application.cpp ├── application.h ├── main.cpp ├── mass.h ├── rope.cpp ├── rope.h └── spring.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/README.md -------------------------------------------------------------------------------- /hw0/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/CMakeLists.txt -------------------------------------------------------------------------------- /hw0/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeCache.txt -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/3.10.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/3.10.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/3.10.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/3.10.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/Transformation.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/Transformation.dir/build.make -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/Transformation.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/Transformation.dir/flags.make -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/Transformation.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/Transformation.dir/link.txt -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/Transformation.dir/main.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/Transformation.dir/main.cpp.o -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /hw0/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /hw0/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/Makefile -------------------------------------------------------------------------------- /hw0/build/Transformation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/Transformation -------------------------------------------------------------------------------- /hw0/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/build/cmake_install.cmake -------------------------------------------------------------------------------- /hw0/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/main.cpp -------------------------------------------------------------------------------- /hw0/pa0.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw0/pa0.pdf -------------------------------------------------------------------------------- /hw1/Assignment1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/Assignment1.pdf -------------------------------------------------------------------------------- /hw1/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/CMakeLists.txt -------------------------------------------------------------------------------- /hw1/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/Triangle.cpp -------------------------------------------------------------------------------- /hw1/Triangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/Triangle.hpp -------------------------------------------------------------------------------- /hw1/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeCache.txt -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/3.10.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/3.10.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/3.10.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/3.10.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/Rasterizer.dir/Triangle.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/Rasterizer.dir/Triangle.cpp.o -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/Rasterizer.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/Rasterizer.dir/build.make -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/Rasterizer.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/Rasterizer.dir/depend.make -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/Rasterizer.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/Rasterizer.dir/flags.make -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/Rasterizer.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/Rasterizer.dir/link.txt -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/Rasterizer.dir/main.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/Rasterizer.dir/main.cpp.o -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/Rasterizer.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/Rasterizer.dir/progress.make -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /hw1/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /hw1/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/Makefile -------------------------------------------------------------------------------- /hw1/build/Rasterizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/Rasterizer -------------------------------------------------------------------------------- /hw1/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/build/cmake_install.cmake -------------------------------------------------------------------------------- /hw1/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/main.cpp -------------------------------------------------------------------------------- /hw1/rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/rasterizer.cpp -------------------------------------------------------------------------------- /hw1/rasterizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw1/rasterizer.hpp -------------------------------------------------------------------------------- /hw2/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/.vscode/settings.json -------------------------------------------------------------------------------- /hw2/Assignment2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/Assignment2.pdf -------------------------------------------------------------------------------- /hw2/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/CMakeLists.txt -------------------------------------------------------------------------------- /hw2/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/Triangle.cpp -------------------------------------------------------------------------------- /hw2/Triangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/Triangle.hpp -------------------------------------------------------------------------------- /hw2/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeCache.txt -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/3.10.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/3.10.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/3.10.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/3.10.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/Rasterizer.dir/Triangle.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/Rasterizer.dir/Triangle.cpp.o -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/Rasterizer.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/Rasterizer.dir/build.make -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/Rasterizer.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/Rasterizer.dir/depend.make -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/Rasterizer.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/Rasterizer.dir/flags.make -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/Rasterizer.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/Rasterizer.dir/link.txt -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/Rasterizer.dir/main.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/Rasterizer.dir/main.cpp.o -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/Rasterizer.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/Rasterizer.dir/progress.make -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /hw2/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /hw2/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/Makefile -------------------------------------------------------------------------------- /hw2/build/Rasterizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/Rasterizer -------------------------------------------------------------------------------- /hw2/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/build/cmake_install.cmake -------------------------------------------------------------------------------- /hw2/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/global.hpp -------------------------------------------------------------------------------- /hw2/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/main.cpp -------------------------------------------------------------------------------- /hw2/rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/rasterizer.cpp -------------------------------------------------------------------------------- /hw2/rasterizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw2/rasterizer.hpp -------------------------------------------------------------------------------- /hw3/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/.vscode/settings.json -------------------------------------------------------------------------------- /hw3/Assignment3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Assignment3.pdf -------------------------------------------------------------------------------- /hw3/Code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/CMakeLists.txt -------------------------------------------------------------------------------- /hw3/Code/OBJ_Loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/OBJ_Loader.h -------------------------------------------------------------------------------- /hw3/Code/Shader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/Shader.hpp -------------------------------------------------------------------------------- /hw3/Code/Texture.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by LEI XU on 4/27/19. 3 | // 4 | 5 | -------------------------------------------------------------------------------- /hw3/Code/Texture.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/Texture.hpp -------------------------------------------------------------------------------- /hw3/Code/Triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/Triangle.cpp -------------------------------------------------------------------------------- /hw3/Code/Triangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/Triangle.hpp -------------------------------------------------------------------------------- /hw3/Code/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeCache.txt -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/3.10.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/3.10.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/3.10.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/3.10.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/Rasterizer.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/Rasterizer.dir/link.txt -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /hw3/Code/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 5 2 | -------------------------------------------------------------------------------- /hw3/Code/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/Makefile -------------------------------------------------------------------------------- /hw3/Code/build/Rasterizer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/Rasterizer -------------------------------------------------------------------------------- /hw3/Code/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/cmake_install.cmake -------------------------------------------------------------------------------- /hw3/Code/build/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/build/output.png -------------------------------------------------------------------------------- /hw3/Code/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/global.hpp -------------------------------------------------------------------------------- /hw3/Code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/main.cpp -------------------------------------------------------------------------------- /hw3/Code/models/Crate/Crate1.3ds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/Crate/Crate1.3ds -------------------------------------------------------------------------------- /hw3/Code/models/Crate/Crate1.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/Crate/Crate1.blend -------------------------------------------------------------------------------- /hw3/Code/models/Crate/Crate1.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/Crate/Crate1.mtl -------------------------------------------------------------------------------- /hw3/Code/models/Crate/Crate1.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/Crate/Crate1.obj -------------------------------------------------------------------------------- /hw3/Code/models/Crate/CrateImage1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/Crate/CrateImage1.JPG -------------------------------------------------------------------------------- /hw3/Code/models/Crate/CrateImage2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/Crate/CrateImage2.JPG -------------------------------------------------------------------------------- /hw3/Code/models/Crate/crate_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/Crate/crate_1.jpg -------------------------------------------------------------------------------- /hw3/Code/models/bunny/bunny.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/bunny/bunny.obj -------------------------------------------------------------------------------- /hw3/Code/models/cube/cube.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/cube/cube.mtl -------------------------------------------------------------------------------- /hw3/Code/models/cube/cube.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/cube/cube.obj -------------------------------------------------------------------------------- /hw3/Code/models/cube/wall.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/cube/wall.tif -------------------------------------------------------------------------------- /hw3/Code/models/cube/wall1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/cube/wall1.tif -------------------------------------------------------------------------------- /hw3/Code/models/rock/rock.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/rock/rock.mtl -------------------------------------------------------------------------------- /hw3/Code/models/rock/rock.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/rock/rock.obj -------------------------------------------------------------------------------- /hw3/Code/models/rock/rock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/rock/rock.png -------------------------------------------------------------------------------- /hw3/Code/models/spot/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/spot/README.txt -------------------------------------------------------------------------------- /hw3/Code/models/spot/hmap.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/spot/hmap.jpg -------------------------------------------------------------------------------- /hw3/Code/models/spot/spot_control_mesh.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/spot/spot_control_mesh.obj -------------------------------------------------------------------------------- /hw3/Code/models/spot/spot_quadrangulated.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/spot/spot_quadrangulated.obj -------------------------------------------------------------------------------- /hw3/Code/models/spot/spot_texture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/spot/spot_texture.png -------------------------------------------------------------------------------- /hw3/Code/models/spot/spot_texture.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/spot/spot_texture.svg -------------------------------------------------------------------------------- /hw3/Code/models/spot/spot_triangulated.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/spot/spot_triangulated.obj -------------------------------------------------------------------------------- /hw3/Code/models/spot/spot_triangulated_good.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/models/spot/spot_triangulated_good.obj -------------------------------------------------------------------------------- /hw3/Code/rasterizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/rasterizer.cpp -------------------------------------------------------------------------------- /hw3/Code/rasterizer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw3/Code/rasterizer.hpp -------------------------------------------------------------------------------- /hw4/assignment4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/assignment4.pdf -------------------------------------------------------------------------------- /hw4/code/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/.vscode/settings.json -------------------------------------------------------------------------------- /hw4/code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/CMakeLists.txt -------------------------------------------------------------------------------- /hw4/code/build/BezierCurve: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/BezierCurve -------------------------------------------------------------------------------- /hw4/code/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeCache.txt -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/3.10.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/3.10.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/3.10.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/3.10.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/BezierCurve.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/BezierCurve.dir/link.txt -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /hw4/code/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /hw4/code/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/Makefile -------------------------------------------------------------------------------- /hw4/code/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/build/cmake_install.cmake -------------------------------------------------------------------------------- /hw4/code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw4/code/main.cpp -------------------------------------------------------------------------------- /hw5/Code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/CMakeLists.txt -------------------------------------------------------------------------------- /hw5/Code/Light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/Light.hpp -------------------------------------------------------------------------------- /hw5/Code/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/Object.hpp -------------------------------------------------------------------------------- /hw5/Code/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/Renderer.cpp -------------------------------------------------------------------------------- /hw5/Code/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/Renderer.hpp -------------------------------------------------------------------------------- /hw5/Code/Scene.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by Göksu Güvendiren on 2019-05-14. 3 | // 4 | 5 | #include "Scene.hpp" 6 | -------------------------------------------------------------------------------- /hw5/Code/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/Scene.hpp -------------------------------------------------------------------------------- /hw5/Code/Sphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/Sphere.hpp -------------------------------------------------------------------------------- /hw5/Code/Triangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/Triangle.hpp -------------------------------------------------------------------------------- /hw5/Code/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/Vector.hpp -------------------------------------------------------------------------------- /hw5/Code/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeCache.txt -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/3.10.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/3.10.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/3.10.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/3.10.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/RayTracing.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/RayTracing.dir/link.txt -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /hw5/Code/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /hw5/Code/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/Makefile -------------------------------------------------------------------------------- /hw5/Code/build/RayTracing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/RayTracing -------------------------------------------------------------------------------- /hw5/Code/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/build/cmake_install.cmake -------------------------------------------------------------------------------- /hw5/Code/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/global.hpp -------------------------------------------------------------------------------- /hw5/Code/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/Code/main.cpp -------------------------------------------------------------------------------- /hw5/assignment5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw5/assignment5.pdf -------------------------------------------------------------------------------- /hw6/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/.DS_Store -------------------------------------------------------------------------------- /hw6/Assignment6/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/.vscode/settings.json -------------------------------------------------------------------------------- /hw6/Assignment6/AreaLight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/AreaLight.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/BVH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/BVH.cpp -------------------------------------------------------------------------------- /hw6/Assignment6/BVH.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/BVH.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/Bounds3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Bounds3.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/CMakeLists.txt -------------------------------------------------------------------------------- /hw6/Assignment6/Intersection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Intersection.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/Light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Light.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/Material.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Material.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/OBJ_Loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/OBJ_Loader.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Object.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/README.md: -------------------------------------------------------------------------------- 1 | 2 | I've finished task ... 3 | 4 | -------------------------------------------------------------------------------- /hw6/Assignment6/Ray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Ray.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Renderer.cpp -------------------------------------------------------------------------------- /hw6/Assignment6/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Renderer.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Scene.cpp -------------------------------------------------------------------------------- /hw6/Assignment6/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Scene.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/Sphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Sphere.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/Triangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Triangle.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/Vector.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by LEI XU on 5/13/19. 3 | // 4 | 5 | #include "Vector.hpp" 6 | -------------------------------------------------------------------------------- /hw6/Assignment6/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/Vector.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/CMakeCache.txt -------------------------------------------------------------------------------- /hw6/Assignment6/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /hw6/Assignment6/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /hw6/Assignment6/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /hw6/Assignment6/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /hw6/Assignment6/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /hw6/Assignment6/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /hw6/Assignment6/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /hw6/Assignment6/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /hw6/Assignment6/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/Makefile -------------------------------------------------------------------------------- /hw6/Assignment6/build/RayTracing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/RayTracing -------------------------------------------------------------------------------- /hw6/Assignment6/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/build/cmake_install.cmake -------------------------------------------------------------------------------- /hw6/Assignment6/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/global.hpp -------------------------------------------------------------------------------- /hw6/Assignment6/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/main.cpp -------------------------------------------------------------------------------- /hw6/Assignment6/models/bunny/bunny.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/Assignment6/models/bunny/bunny.obj -------------------------------------------------------------------------------- /hw6/PA6.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw6/PA6.pdf -------------------------------------------------------------------------------- /hw7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/.DS_Store -------------------------------------------------------------------------------- /hw7/Assignment7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7.pdf -------------------------------------------------------------------------------- /hw7/Assignment7/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/.DS_Store -------------------------------------------------------------------------------- /hw7/Assignment7/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/.vscode/settings.json -------------------------------------------------------------------------------- /hw7/Assignment7/AreaLight.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/AreaLight.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/BVH.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/BVH.cpp -------------------------------------------------------------------------------- /hw7/Assignment7/BVH.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/BVH.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/Bounds3.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Bounds3.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/CMakeLists.txt -------------------------------------------------------------------------------- /hw7/Assignment7/Intersection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Intersection.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/Light.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Light.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/Material.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Material.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/OBJ_Loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/OBJ_Loader.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/Object.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Object.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/README.md: -------------------------------------------------------------------------------- 1 | 2 | I've finished task ... 3 | 4 | -------------------------------------------------------------------------------- /hw7/Assignment7/Ray.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Ray.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/Renderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Renderer.cpp -------------------------------------------------------------------------------- /hw7/Assignment7/Renderer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Renderer.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/Scene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Scene.cpp -------------------------------------------------------------------------------- /hw7/Assignment7/Scene.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Scene.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/Sphere.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Sphere.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/Triangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Triangle.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/Vector.cpp: -------------------------------------------------------------------------------- 1 | // 2 | // Created by LEI XU on 5/13/19. 3 | // 4 | 5 | #include "Vector.hpp" 6 | -------------------------------------------------------------------------------- /hw7/Assignment7/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/Vector.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/CMakeCache.txt -------------------------------------------------------------------------------- /hw7/Assignment7/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /hw7/Assignment7/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /hw7/Assignment7/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /hw7/Assignment7/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /hw7/Assignment7/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /hw7/Assignment7/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /hw7/Assignment7/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /hw7/Assignment7/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 6 2 | -------------------------------------------------------------------------------- /hw7/Assignment7/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/Makefile -------------------------------------------------------------------------------- /hw7/Assignment7/build/RayTracing: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/RayTracing -------------------------------------------------------------------------------- /hw7/Assignment7/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/build/cmake_install.cmake -------------------------------------------------------------------------------- /hw7/Assignment7/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/global.hpp -------------------------------------------------------------------------------- /hw7/Assignment7/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/main.cpp -------------------------------------------------------------------------------- /hw7/Assignment7/models/bunny/bunny.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/models/bunny/bunny.obj -------------------------------------------------------------------------------- /hw7/Assignment7/models/cornellbox/floor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/models/cornellbox/floor.obj -------------------------------------------------------------------------------- /hw7/Assignment7/models/cornellbox/left.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/models/cornellbox/left.obj -------------------------------------------------------------------------------- /hw7/Assignment7/models/cornellbox/light.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/models/cornellbox/light.obj -------------------------------------------------------------------------------- /hw7/Assignment7/models/cornellbox/right.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/models/cornellbox/right.obj -------------------------------------------------------------------------------- /hw7/Assignment7/models/cornellbox/shortbox.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/models/cornellbox/shortbox.obj -------------------------------------------------------------------------------- /hw7/Assignment7/models/cornellbox/tallbox.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw7/Assignment7/models/cornellbox/tallbox.obj -------------------------------------------------------------------------------- /hw8/CGL/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_store -------------------------------------------------------------------------------- /hw8/CGL/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/CGL/cmake/modules/FindGLEW.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/cmake/modules/FindGLEW.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glew/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glew/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/CGL/deps/glew/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glew/LICENSE.txt -------------------------------------------------------------------------------- /hw8/CGL/deps/glew/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glew/include/GL/glew.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glew/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glew/include/GL/glxew.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glew/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glew/include/GL/wglew.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glew/src/glew.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glew/src/glew.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glew/src/glewinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glew/src/glewinfo.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glew/src/visualinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glew/src/visualinfo.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/AppleInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/AppleInfo.plist -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/amd64-mingw32msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/amd64-mingw32msvc.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/i586-mingw32msvc.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/i586-mingw32msvc.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/i686-pc-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/i686-pc-mingw32.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/i686-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/i686-w64-mingw32.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/modules/FindEGL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/modules/FindEGL.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/modules/FindGLESv1.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/modules/FindGLESv1.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/modules/FindGLESv2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/modules/FindGLESv2.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/modules/FindMir.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/modules/FindMir.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/modules/FindWayland.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/modules/FindWayland.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMake/x86_64-w64-mingw32.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMake/x86_64-w64-mingw32.cmake -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/COPYING.txt -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/cmake_uninstall.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/cmake_uninstall.cmake.in -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/EGL/eglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/EGL/eglext.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/GL/glext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/GL/glext.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/GL/glxext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/GL/glxext.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/GL/wglext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/GL/wglext.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/KHR/khrplatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/KHR/khrplatform.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/getopt.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/getopt.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/glad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/glad.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/glad/glad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/glad/glad.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/tinycthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/tinycthread.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/deps/tinycthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/deps/tinycthread.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/Doxyfile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/Doxyfile.in -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/DoxygenLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/DoxygenLayout.xml -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/build.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/build.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/compat.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/compat.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/compile.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/compile.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/context.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/context.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/extra.css -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/extra.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/extra.less -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/footer.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/header.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/annotated.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/bc_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/bc_s.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/bdwn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/bdwn.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/bug.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/bug.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/build.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/build.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/build_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/build_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/classes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/classes.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/closed.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/compat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/compat.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/compat_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/compat_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/compile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/compile.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/compile_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/compile_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/context.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/context_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/context_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/doxygen.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/doxygen.css -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/doxygen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/doxygen.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/dynsections.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/dynsections.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/extra.css -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/files.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2blank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2blank.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2cl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2cl.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2doc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2doc.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2folderclosed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2folderclosed.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2folderopen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2folderopen.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2lastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2lastnode.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2link.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2mlastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2mlastnode.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2mnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2mnode.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2mo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2mo.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2node.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2ns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2ns.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2plastnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2plastnode.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2pnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2pnode.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2splitbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2splitbar.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/ftv2vertline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/ftv2vertline.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/functions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/functions.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/functions_vars.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/functions_vars.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/glfw3_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/glfw3_8h.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/glfw3_8h_source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/glfw3_8h_source.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/glfw3native_8h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/glfw3native_8h.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_b.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_c.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_d.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_b.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_c.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_d.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_f.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_g.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_h.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_i.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_j.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_j.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_k.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_k.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_l.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_m.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_n.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_o.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_o.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_p.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_r.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_s.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_defs_v.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_defs_v.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_e.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_f.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_func.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_func.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_g.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_g.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_h.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_h.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_i.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_i.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_j.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_j.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_k.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_k.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_l.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_l.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_m.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_n.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_n.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_o.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_o.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_p.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_p.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_r.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_r.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_s.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_s.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_t.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_t.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_type.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_type.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_v.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_v.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/globals_w.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/globals_w.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__buttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__buttons.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__context.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__context.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__errors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__errors.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__init.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__init.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__input.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__joysticks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__joysticks.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__keys.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__keys.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__mods.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__mods.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__monitor.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__native.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__native.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__shapes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__shapes.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/group__window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/group__window.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/index.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/input.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/input.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/input_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/input_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/intro.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/intro.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/intro_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/intro_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/jquery.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/main_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/main_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/modules.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/modules.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/monitor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/monitor.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/monitor_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/monitor_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/moving.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/moving.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/moving_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/moving_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/nav_f.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/nav_f.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/nav_g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/nav_g.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/nav_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/nav_h.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/news.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/news.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/news_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/news_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/open.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/pages.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/pages.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/quick.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/quick.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/quick_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/quick_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/rift.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/rift.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/rift_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/rift_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_0.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_0.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_1.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_1.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_2.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_2.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_3.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_3.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_4.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_4.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_5.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_5.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_6.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_6.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_7.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_7.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_8.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_8.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_9.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_9.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_9.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_a.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_a.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_a.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_b.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_b.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_b.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_c.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_c.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_c.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_d.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_d.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_d.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_e.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_e.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_e.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_f.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_f.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/all_f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/all_f.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/classes_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/classes_0.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/classes_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/classes_0.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/close.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/defines_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/defines_0.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/defines_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/defines_0.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_0.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_0.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_1.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_1.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_2.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_2.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_3.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_3.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_4.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_4.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_5.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_5.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_6.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_6.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_7.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_7.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_8.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/files_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/files_8.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/functions_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/functions_0.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_0.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_0.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_1.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_1.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_2.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_2.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_3.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_3.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_4.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_4.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_5.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_5.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_6.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_6.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_7.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_7.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_8.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/groups_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/groups_8.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/mag_sel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/mag_sel.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/nomatches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/nomatches.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_0.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_0.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_1.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_1.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_2.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_2.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_3.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_3.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_4.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_4.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_5.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_5.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_6.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_6.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_7.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_7.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_7.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_8.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/pages_8.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/pages_8.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/search.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/search.css -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/search.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/search_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/search_l.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/search_m.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/search_m.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/search_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/search_r.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/typedefs_0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/typedefs_0.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/typedefs_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/typedefs_0.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/variables_0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/variables_0.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/variables_1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/variables_1.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/variables_2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/variables_2.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/variables_3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/variables_3.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/variables_4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/variables_4.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/variables_5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/variables_5.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/search/variables_6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/search/variables_6.js -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/spaces.svg -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/structGLFWimage.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/structGLFWimage.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/structGLFWvidmode.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/structGLFWvidmode.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/sync_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/sync_off.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/sync_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/sync_on.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/tab_a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/tab_a.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/tab_b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/tab_b.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/tab_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/tab_h.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/tab_s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/tab_s.png -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/tabs.css -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/window.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/window.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/html/window_8dox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/html/window_8dox.html -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/input.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/input.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/internal.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/internal.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/intro.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/intro.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/main.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/main.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/monitor.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/monitor.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/moving.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/moving.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/news.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/news.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/quick.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/quick.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/rift.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/rift.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/spaces.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/spaces.svg -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/docs/window.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/docs/window.dox -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/examples/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/examples/boing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/examples/boing.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/examples/gears.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/examples/gears.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/examples/heightmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/examples/heightmap.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/examples/particles.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/examples/particles.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/examples/simple.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/examples/simple.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/examples/splitview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/examples/splitview.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/examples/wave.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/examples/wave.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/cocoa_init.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/cocoa_init.m -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/cocoa_monitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/cocoa_monitor.m -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/cocoa_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/cocoa_platform.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/cocoa_window.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/cocoa_window.m -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/context.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/egl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/egl_context.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/egl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/egl_context.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/glfw3.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/glfw3.pc.in -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/glfw3Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/glfw3Config.cmake.in -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/glfw_config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/glfw_config.h.in -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/glx_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/glx_context.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/glx_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/glx_context.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/init.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/input.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/internal.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/iokit_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/iokit_joystick.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/iokit_joystick.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/iokit_joystick.m -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/linux_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/linux_joystick.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/linux_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/linux_joystick.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/mach_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/mach_time.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/mir_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/mir_init.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/mir_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/mir_monitor.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/mir_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/mir_platform.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/mir_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/mir_window.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/monitor.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/nsgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/nsgl_context.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/nsgl_context.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/nsgl_context.m -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/posix_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/posix_time.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/posix_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/posix_time.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/posix_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/posix_tls.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/posix_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/posix_tls.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/wgl_context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/wgl_context.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/wgl_context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/wgl_context.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/win32_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/win32_init.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/win32_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/win32_monitor.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/win32_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/win32_platform.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/win32_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/win32_time.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/win32_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/win32_tls.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/win32_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/win32_tls.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/win32_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/win32_window.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/window.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/winmm_joystick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/winmm_joystick.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/winmm_joystick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/winmm_joystick.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/wl_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/wl_init.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/wl_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/wl_monitor.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/wl_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/wl_platform.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/wl_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/wl_window.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/x11_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/x11_init.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/x11_monitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/x11_monitor.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/x11_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/x11_platform.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/x11_window.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/x11_window.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/xkb_unicode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/xkb_unicode.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/src/xkb_unicode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/src/xkb_unicode.h -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/accuracy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/accuracy.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/clipboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/clipboard.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/cursor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/cursor.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/cursoranim.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/cursoranim.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/defaults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/defaults.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/empty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/empty.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/events.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/events.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/fsaa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/fsaa.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/gamma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/gamma.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/glfwinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/glfwinfo.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/iconify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/iconify.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/joysticks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/joysticks.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/monitors.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/monitors.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/peter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/peter.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/reopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/reopen.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/sharing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/sharing.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/tearing.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/tearing.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/threads.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/threads.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/title.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/title.c -------------------------------------------------------------------------------- /hw8/CGL/deps/glfw/tests/windows.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/deps/glfw/tests/windows.c -------------------------------------------------------------------------------- /hw8/CGL/examples/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/examples/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/CGL/examples/text.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/examples/text.cpp -------------------------------------------------------------------------------- /hw8/CGL/examples/triangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/examples/triangle.cpp -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/CGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/CGL.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/base64.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/color.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/complex.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/matrix3x3.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/matrix4x4.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/misc.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/osdtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/osdtext.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/quaternion.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/renderer.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/tinyxml2.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/vector2D.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/vector3D.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/vector4D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/vector4D.h -------------------------------------------------------------------------------- /hw8/CGL/include/CGL/viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/CGL/viewer.h -------------------------------------------------------------------------------- /hw8/CGL/include/GL/glew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/GL/glew.h -------------------------------------------------------------------------------- /hw8/CGL/include/GL/glxew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/GL/glxew.h -------------------------------------------------------------------------------- /hw8/CGL/include/GL/wglew.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/GL/wglew.h -------------------------------------------------------------------------------- /hw8/CGL/include/GLFW/glfw3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/GLFW/glfw3.h -------------------------------------------------------------------------------- /hw8/CGL/include/GLFW/glfw3native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/include/GLFW/glfw3native.h -------------------------------------------------------------------------------- /hw8/CGL/src/CGL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/CGL.h -------------------------------------------------------------------------------- /hw8/CGL/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/CGL/src/base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/base64.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/base64.h -------------------------------------------------------------------------------- /hw8/CGL/src/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/color.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/color.h -------------------------------------------------------------------------------- /hw8/CGL/src/complex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/complex.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/complex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/complex.h -------------------------------------------------------------------------------- /hw8/CGL/src/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/console.h -------------------------------------------------------------------------------- /hw8/CGL/src/matrix3x3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/matrix3x3.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/matrix3x3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/matrix3x3.h -------------------------------------------------------------------------------- /hw8/CGL/src/matrix4x4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/matrix4x4.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/matrix4x4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/matrix4x4.h -------------------------------------------------------------------------------- /hw8/CGL/src/osdfont.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/osdfont.c -------------------------------------------------------------------------------- /hw8/CGL/src/osdtext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/osdtext.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/osdtext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/osdtext.h -------------------------------------------------------------------------------- /hw8/CGL/src/quaternion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/quaternion.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/quaternion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/quaternion.h -------------------------------------------------------------------------------- /hw8/CGL/src/renderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/renderer.h -------------------------------------------------------------------------------- /hw8/CGL/src/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/tinyxml2.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/tinyxml2.h -------------------------------------------------------------------------------- /hw8/CGL/src/vector2D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/vector2D.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/vector2D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/vector2D.h -------------------------------------------------------------------------------- /hw8/CGL/src/vector3D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/vector3D.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/vector3D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/vector3D.h -------------------------------------------------------------------------------- /hw8/CGL/src/vector4D.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/vector4D.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/vector4D.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/vector4D.h -------------------------------------------------------------------------------- /hw8/CGL/src/viewer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/viewer.cpp -------------------------------------------------------------------------------- /hw8/CGL/src/viewer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/src/viewer.h -------------------------------------------------------------------------------- /hw8/CGL/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/tests/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/CGL/tests/osd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CGL/tests/osd.cpp -------------------------------------------------------------------------------- /hw8/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/assignment8.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/assignment8.pdf -------------------------------------------------------------------------------- /hw8/build/CGL/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 32 2 | -------------------------------------------------------------------------------- /hw8/build/CGL/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/Makefile -------------------------------------------------------------------------------- /hw8/build/CGL/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/cmake_install.cmake -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glew/CMakeFiles/glew.dir/cmake_clean_target.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "libglew.a" 3 | ) 4 | -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glew/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glew/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glew/Makefile -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glew/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glew/cmake_install.cmake -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glew/libglew.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glew/libglew.a -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/CMakeFiles/uninstall.dir/progress.make: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glfw/Makefile -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glfw/cmake_install.cmake -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/cmake_uninstall.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glfw/cmake_uninstall.cmake -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/src/CMakeFiles/glfw.dir/cmake_clean_target.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "libglfw3.a" 3 | ) 4 | -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/src/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 14 2 | -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glfw/src/Makefile -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/src/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glfw/src/cmake_install.cmake -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/src/glfw3.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glfw/src/glfw3.pc -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/src/glfw3Config.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glfw/src/glfw3Config.cmake -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/src/glfw_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glfw/src/glfw_config.h -------------------------------------------------------------------------------- /hw8/build/CGL/deps/glfw/src/libglfw3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/deps/glfw/src/libglfw3.a -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/base64.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/base64.cpp.o -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/build.make -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/cmake_clean_target.cmake: -------------------------------------------------------------------------------- 1 | file(REMOVE_RECURSE 2 | "libCGL.a" 3 | ) 4 | -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/color.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/color.cpp.o -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/complex.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/complex.cpp.o -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/depend.make -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/flags.make -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/link.txt -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/osdfont.c.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/osdfont.c.o -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/osdtext.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/osdtext.cpp.o -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/progress.make -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/CGL.dir/viewer.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/CMakeFiles/CGL.dir/viewer.cpp.o -------------------------------------------------------------------------------- /hw8/build/CGL/src/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 18 2 | -------------------------------------------------------------------------------- /hw8/build/CGL/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/Makefile -------------------------------------------------------------------------------- /hw8/build/CGL/src/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/cmake_install.cmake -------------------------------------------------------------------------------- /hw8/build/CGL/src/libCGL.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CGL/src/libCGL.a -------------------------------------------------------------------------------- /hw8/build/CMakeCache.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeCache.txt -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/3.10.2/CMakeCCompiler.cmake -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/3.10.2/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/3.10.2/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/3.10.2/CMakeSystem.cmake -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/3.10.2/CompilerIdC/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/3.10.2/CompilerIdC/a.out -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/3.10.2/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/CMakeError.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/CMakeError.log -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/CMakeRuleHashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/CMakeRuleHashes.txt -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/feature_tests.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/feature_tests.bin -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/feature_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/feature_tests.c -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/feature_tests.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/CMakeFiles/feature_tests.cxx -------------------------------------------------------------------------------- /hw8/build/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 36 2 | -------------------------------------------------------------------------------- /hw8/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/Makefile -------------------------------------------------------------------------------- /hw8/build/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/cmake_install.cmake -------------------------------------------------------------------------------- /hw8/build/ropesim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/ropesim -------------------------------------------------------------------------------- /hw8/build/src/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 36 2 | -------------------------------------------------------------------------------- /hw8/build/src/CMakeFiles/ropesim.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/src/CMakeFiles/ropesim.dir/build.make -------------------------------------------------------------------------------- /hw8/build/src/CMakeFiles/ropesim.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/src/CMakeFiles/ropesim.dir/depend.make -------------------------------------------------------------------------------- /hw8/build/src/CMakeFiles/ropesim.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/src/CMakeFiles/ropesim.dir/flags.make -------------------------------------------------------------------------------- /hw8/build/src/CMakeFiles/ropesim.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/src/CMakeFiles/ropesim.dir/link.txt -------------------------------------------------------------------------------- /hw8/build/src/CMakeFiles/ropesim.dir/main.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/src/CMakeFiles/ropesim.dir/main.cpp.o -------------------------------------------------------------------------------- /hw8/build/src/CMakeFiles/ropesim.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/src/CMakeFiles/ropesim.dir/progress.make -------------------------------------------------------------------------------- /hw8/build/src/CMakeFiles/ropesim.dir/rope.cpp.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/src/CMakeFiles/ropesim.dir/rope.cpp.o -------------------------------------------------------------------------------- /hw8/build/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/src/Makefile -------------------------------------------------------------------------------- /hw8/build/src/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/build/src/cmake_install.cmake -------------------------------------------------------------------------------- /hw8/src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/src/CMakeLists.txt -------------------------------------------------------------------------------- /hw8/src/application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/src/application.cpp -------------------------------------------------------------------------------- /hw8/src/application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/src/application.h -------------------------------------------------------------------------------- /hw8/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/src/main.cpp -------------------------------------------------------------------------------- /hw8/src/mass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/src/mass.h -------------------------------------------------------------------------------- /hw8/src/rope.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/src/rope.cpp -------------------------------------------------------------------------------- /hw8/src/rope.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/src/rope.h -------------------------------------------------------------------------------- /hw8/src/spring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SightVanish/ComputerGraphics-Games101/HEAD/hw8/src/spring.h --------------------------------------------------------------------------------