/Kid3d

Primary LanguageC++MIT LicenseMIT

Kid3d

This is a playgroud for computer graphics. I supply some examples for 3D graphics.

Required Libraries

Installing Libraries(except glad)

cd ${lib}
cmake .

Then Makeflie will be generated. make install will make libs installed.

Examples

#include <GLXW/glxw.h>
#include <GLFW/glfw3.h>

int mian() {
    glxwInit();
    glfwWindowHint(GLFW_OPENGL_PROFILE, GLFW_OPENGL_CORE_PROFILE);

    return 0
}

Run in terminel

Firstly, build project

cmake .
g++ example.cpp -o play -lGLEW -lglfw3 -v