#include <stdlib.h>
#include <math.h>
#include <stdio.h>
#include <assert.h>
#define GLFW_INCLUDE_GLCOREARB
#define GL_GLEXT_PROTOTYPES
#include <GLFW/glfw3.h>
#ifndef __APPLE__
#include <GL/glcorearb.h>
#endif
const double PI = 3.141592;
const unsigned int NVERTICES = 13;
const unsigned int NDIMENSIONS = 3;
const unsigned int BUFSIZE = 1024; // For error logs.