vcglib/vcg/container
ganovelli 1428a1cc3c added a derivation chain to support the modification to the trimesh definition (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:17:06 +00:00
..
container_allocation_table.h fixed comment warning. 2009-06-28 03:13:39 +00:00
derivation_chain.h added a derivation chain to support the modification to the trimesh definition (below) 2010-03-19 17:17:06 +00:00
entries_allocation_table.h fixed comment warning. 2009-06-28 03:13:56 +00:00
simple_temporary_data.h added support for dump of attributes (see wrap/io_trimesh/[import | export]_VMI.h ) 2009-07-29 15:45:56 +00:00
vector_occ.h Removed a few harmless warnings 2009-03-30 20:58:18 +00:00