vcglib/vcg
ganovelli 584936f27a [ Changes in definition of TriMesh: PART II ]
Note: No changes to existing code need be the done, this mod
should be fully backward compatible

Old way to define a TriMesh ==============
struct MyMesh: public vcg::tri::TriMesh< vector<MyVertex> , vector <MyFace> >{};

new  ways to define a TriMesh ==============

struct MyMesh: public vcg::tri::TriMesh< CONT1 >{};
struct MyMesh: public vcg::tri::TriMesh< CONT1 , CONT2>{};
struct MyMesh: public vcg::tri::TriMesh< CONT1 , CONT2, CONT3>{};

where CONT[i] can be vector< [MyVertex | MyEdge | MyFace ] > 
(the order is unimportant)
2010-03-19 17:13:31 +00:00
..
complex [ Changes in definition of TriMesh: PART II ] 2010-03-19 17:13:31 +00:00
container [ Changes in definition of TriMesh: PART I ] 2010-03-15 10:43:27 +00:00
math removed harmless warnings 2010-03-18 14:20:53 +00:00
simplex Doh! Forgot a const in the getbbox of Face Base 2010-03-18 10:28:10 +00:00
space removed harmless warnings/English Comments 2010-03-18 10:04:55 +00:00