Go to file
2019-01-25 09:02:56 +01:00
.vscode Exercise 4 debug 2019-01-24 15:46:27 +01:00
CMake/Modules Added last batch of fixes that didn't make it into student repository for some reason 2018-10-19 14:40:51 +02:00
common added check for debug callback 2018-11-13 10:40:59 +01:00
data Added missing /data folder containing the test meshes 2018-12-19 16:40:40 +01:00
exercise1 Merge branch 'master' of http://141.30.224.77/hodasemi/CGI 2018-11-27 21:32:35 +01:00
exercise2 Theorie added 2019-01-05 14:19:37 +01:00
exercise3 Pull recent changes from bitbucket 2019-01-24 16:01:34 +01:00
exercise4 Impl AABB search 2019-01-25 09:02:56 +01:00
exercise5 minor fixes 2018-11-28 12:20:57 +01:00
ext Initial commit 2018-09-06 14:35:43 +02:00
solution Added new Exercise 2 2018-11-13 09:35:18 +01:00
.gitignore last git ignore push 2018-11-11 16:36:04 +01:00
.gitmodules Initial commit 2018-09-06 14:35:43 +02:00
CMakeLists.txt Added new Exercise 2 2018-11-13 09:35:18 +01:00
README.md Initial commit 2018-09-06 15:16:04 +02:00

Computer Graphics 1 - Exercises

This repository contains the source code and data sets for the CG1 exercises. To download and compile the project, you need to do the following steps:

  1. Clone the project to your local computer
  2. Run CMake to generate a project file for your build platform. Alternatively, you can use a development environment that supports CMake natively and open the directory directly.
  3. Open the project file and compile.

Under Unix, you could employ the command line like follows:

git clone https://bitbucket.org/cgvtud/cg1.git --recursive
cd cg1
mkdir build
cd build
cmake ..
make

After this, you find the compiled applications under cg1/build/bin.

On Windows / Visual Studio, you can use the CMake GUI. After cloning the repository, open the CMake GUI and set Where is the source code to the cloned directory. Set Where to build the binaries to a new subfolder build. Click Configure and select the desired Visual Studio Version. Then, click Configure and Open Project to generate and open the project in Visual studio. Finally, choose the desired startup project (Exercise1-4) and compile and run.