- rename module template parameters

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@650 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Matthias Möller
2012-08-08 15:15:17 +00:00
parent 54fafe054b
commit a093b541c3
13 changed files with 68 additions and 68 deletions

View File

@@ -74,17 +74,17 @@ namespace Decimater { // BEGIN_NS_DECIMATER
* collapse. The collapse will pass the test, if the deviation is below
* a given threshold.
*/
template <typename DecimaterT>
class ModNormalFlippingT : public ModBaseT< DecimaterT >
template <typename MeshT>
class ModNormalFlippingT : public ModBaseT< MeshT >
{
public:
DECIMATING_MODULE( ModNormalFlippingT, DecimaterT, NormalFlipping );
DECIMATING_MODULE( ModNormalFlippingT, MeshT, NormalFlipping );
public:
/// Constructor
ModNormalFlippingT( DecimaterT &_dec) : Base(_dec, true)
ModNormalFlippingT( MeshT &_mesh) : Base(_mesh, true)
{
set_max_normal_deviation( 90.0f );
}