A minimalistic OpenGL project that renders an animation of rotating 3D icosahedron. Built as a learning exercise to explore the core concepts of modern graphics programming.
- Procedural animation using custom mathematical functions
- Multi-layered movement combining Bézier curves, smooth interpolation, and exponential function
- Visual Studio build tools or VisualStudio 2022
- Clone:
git clone https://github.com/TheRealBaron/icosahedron.git - Open: Launch
OpenGL.slnin Visual Studio (2022 or later). - Run: Press
F5.
The main goal was to understand the setup and use of:
- OpenGL function loading with GLAD.
- Compiling and using custom GLSL shaders.
- Implementing a basic game loop with delta time.
