vcglib/vcg
ganovelli 9fc476b130 added type traits to support the mod below:
[ 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:18:00 +00:00
..
complex All the functions handling TriMesh::imark have been moved outside the definition 2010-03-19 17:14:01 +00:00
container added a derivation chain to support the modification to the trimesh definition (below) 2010-03-19 17:17:06 +00:00
math removed harmless warnings 2010-03-18 14:20:53 +00:00
simplex added type traits to support the mod below: 2010-03-19 17:18:00 +00:00
space removed harmless warnings/English Comments 2010-03-18 10:04:55 +00:00