Computational Geometry



Planned lectures in 2017/2018 :

September 20 14h00
October 4,18 14h00
November 8,15,29 14h00
December 13 14h00


Lecture transparencies

09/20 (alternate link) updated 09/20

Visualization library

Source code Here (Updated 2016/09/21).
Use :
- Install VTK ou FLTK + dev librairies
- uncompress nutil.tar.gz and go to folder "nutil"
- create a build folder and go inside
- generate makfiles with CMake
- Compile and execute sample code

tar -zxf nutil.tar.gz
cd nutil
mkdir build
cd build
cmake .. ( or use ccmake ..)
make ndisplaytest
./ndisplay/test/ndisplaytest
OR
cmake -D ENABLE_FLTK_INTERFACE=TRUE -D ENABLE_VTK_INTERFACE=FALSE -D INTERFACE_TYPE=FLTK ..
make ndisplaytest
./ndisplay/test/ndisplaytest

For the delaunay triangulation project #2; there is sample code to read an STL file :

make nstltest
cd ../ndisplay/test
../../build/ndisplay/nstltest

This sample code loads "test.stl" and displays it.