View demo.py
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
# imports | |
from OpenGL.GL import * | |
from OpenGL.GLU import * | |
import glfw | |
import threading | |
# initialise glfw | |
if glfw.init() == glfw.FALSE: | |
exit() |
View application.cpp
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
#include "application.h" | |
#include "utils.h" | |
#include "mesh.h" | |
#include "texture.h" | |
#include "light.h" | |
#include "volume.h" | |
#include "fbo.h" | |
#include "shader.h" | |
#include "input.h" | |
#include "animation.h" |
View Idea-example.py
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
# I am just an example for idea files! | |
""" | |
Explain the idea here | |
""" | |
# an example | |
def someIdea(arg): | |
print(arg) | |