You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1.7 KiB
1.7 KiB
ImGuIZMO_quat OpenGL easy examples
These "step by step" examples guide in the use of the various widgets and and how to use the transformations obtained to build an MVP matrix. They cover both GLFW and SDL2 frameworks in distinct/separate files.
Live WebGL2 glLightCube_07 and glCube_07
*you can find they in easy cube examples and illuminated cube
Build examples
CMakeLists.txt
file is provided to build the examples
From command line (where is CMakeLists.txt
) type:
mkdir build
==> create a directory where to buildcd build
==> go to in it
Then execute CMake depending on your settings (devel packages installed). For example, use:
cmake -G Ninja ..
==> to build with ninja and GLFW frameworkcmake -G "Unix Makefiles"" ..
==> to build with make and GLFW frameworkcmake -DUSE_SDL3=ON -G Ninja ..
==> to build with ninja and SDL3 framework
And now run the command:
ninja
or make -j
or the building system chosed to build examples
*obviously is necessary to have GLFW | SDL2 (devel package) installed: one is enaugh *currently tested in Linux, but it should also work in Windows and/or MacOS... it will be tested soon on both