Skip to content

An OpenGL project where I learnt how to render 3D shapes using OpenGL in C++ and other libraries like glm and glut.

Notifications You must be signed in to change notification settings

spashal/ABC-of-3D

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

ABC-of-3D

How to run the code?

  1. Clone this repo to your local machine

  2. Make sure you have glut and glm libraries installed.

  3. We will first make a build folder and then move into it so that all our makefiles reside in there. Type the below commands in your terminal

     mkdir build
     cd build
    
  4. Next we use the cmake list given to us and create an executable

     cmake ..
     make
    
  5. Now we can run our executable to see the screen

     ./Hello-World
    

Controls

You shall choose to see one of the different shapes the code can render by choosing an option.

To move the figure along the 3 axes, use , J and K for the X-axis, L and ; for the Y-axis and I and O for the Z-axis.

Use A and S for rotating the camera along the X direction and use D and F for moving camera in the upward direction, i.e. along the Y-axis.

The camera shall always move in a circle so at to always face the origin.

About

An OpenGL project where I learnt how to render 3D shapes using OpenGL in C++ and other libraries like glm and glut.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published