├── .gitattributes ├── .gitignore ├── README.md ├── compile.bat ├── compile_and_run.bat ├── external ├── tiny_obj_loader.cc └── tiny_obj_loader.h ├── models ├── GP.mtl └── GP.obj ├── run.bat ├── shell.bat ├── src ├── CIE.h ├── main.cpp └── model.h └── thumbnail.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/README.md -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/compile.bat -------------------------------------------------------------------------------- /compile_and_run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/compile_and_run.bat -------------------------------------------------------------------------------- /external/tiny_obj_loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/external/tiny_obj_loader.cc -------------------------------------------------------------------------------- /external/tiny_obj_loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/external/tiny_obj_loader.h -------------------------------------------------------------------------------- /models/GP.mtl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/models/GP.mtl -------------------------------------------------------------------------------- /models/GP.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/models/GP.obj -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | build\main.exe -------------------------------------------------------------------------------- /shell.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x64 3 | -------------------------------------------------------------------------------- /src/CIE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/src/CIE.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/model.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/src/model.h -------------------------------------------------------------------------------- /thumbnail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GraphicsProgramming/Albedo/HEAD/thumbnail.png --------------------------------------------------------------------------------