4typedef Decimater::DecimaterT<Mesh> Decimater;
5typedef Decimater::ModQuadricT<Mesh>::Handle HModQuadric;
8Decimater decimater(mesh);
9HModQuadric hModQuadric;
11decimater.add(hModQuadric);
12std::cout << decimater.module(hModQuadric).name() << std::endl;
19decimater.module(hModQuadric).unset_max_err();
21decimater.initialize();
25mesh.garbage_collection();