This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Blender v2.81 (sub 16) OBJ File: '' | |
# www.blender.org | |
mtllib cube.mtl | |
o Cube | |
v 1.000000 1.000000 -1.000000 | |
v 1.000000 -1.000000 -1.000000 | |
v -1.000000 -1.000000 -1.000000 | |
v -1.000000 1.000000 -1.000000 | |
v 1.000000 1.000000 1.000000 | |
v 1.000000 -1.000000 1.000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#define _USE_MATH_DEFINES | |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <math.h> | |
#include <assert.h> | |
#include "glad/glad.h" | |
#include "GLFW/glfw3.h" | |
#define LIGHTMAPPER_IMPLEMENTATION | |
#define LM_DEBUG_INTERPOLATION |