gitextract_8c12mitb/ ├── .gitignore ├── .gitpod.yml ├── CMakeLists.txt ├── Dockerfile ├── LICENSE.txt ├── README.md ├── geometry.h ├── main.cpp ├── model.cpp ├── model.h ├── obj/ │ ├── african_head/ │ │ ├── african_head.obj │ │ ├── african_head_diffuse.tga │ │ ├── african_head_eye_inner.obj │ │ ├── african_head_eye_inner_diffuse.tga │ │ ├── african_head_eye_inner_nm.tga │ │ ├── african_head_eye_inner_nm_tangent.tga │ │ ├── african_head_eye_inner_spec.tga │ │ ├── african_head_eye_outer.obj │ │ ├── african_head_eye_outer_diffuse.tga │ │ ├── african_head_eye_outer_gloss.tga │ │ ├── african_head_eye_outer_nm.tga │ │ ├── african_head_eye_outer_nm_tangent.tga │ │ ├── african_head_eye_outer_spec.tga │ │ ├── african_head_nm.tga │ │ ├── african_head_nm_tangent.tga │ │ ├── african_head_spec.tga │ │ └── readme.txt │ ├── boggie/ │ │ ├── body.obj │ │ ├── body_diffuse.tga │ │ ├── body_nm_tangent.tga │ │ ├── body_spec.tga │ │ ├── eyes.obj │ │ ├── eyes_diffuse.tga │ │ ├── eyes_nm_tangent.tga │ │ ├── eyes_spec.tga │ │ ├── head.obj │ │ ├── head_diffuse.tga │ │ ├── head_nm_tangent.tga │ │ ├── head_spec.tga │ │ └── readme.txt │ ├── diablo3_pose/ │ │ ├── diablo3_pose.obj │ │ ├── diablo3_pose_diffuse.tga │ │ ├── diablo3_pose_glow.tga │ │ ├── diablo3_pose_nm.tga │ │ ├── diablo3_pose_nm_tangent.tga │ │ ├── diablo3_pose_spec.tga │ │ └── readme.txt │ ├── floor.obj │ ├── floor_diffuse.tga │ ├── floor_nm_tangent.tga │ ├── floor_spec.tga │ └── grid.tga ├── our_gl.cpp ├── our_gl.h ├── tgaimage.cpp └── tgaimage.h