- 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

@@ -64,9 +64,9 @@ namespace Decimater {
//== IMPLEMENTATION ==========================================================
template <class DecimaterT>
typename ModHausdorffT<DecimaterT>::Scalar
ModHausdorffT<DecimaterT>::
template <class MeshT>
typename ModHausdorffT<MeshT>::Scalar
ModHausdorffT<MeshT>::
distPointTriangleSquared( const Point& _p,
const Point& _v0,
const Point& _v1,
@@ -191,9 +191,9 @@ distPointTriangleSquared( const Point& _p,
}
template <class DecimaterT>
template <class MeshT>
void
ModHausdorffT<DecimaterT>::
ModHausdorffT<MeshT>::
initialize()
{
typename Mesh::FIter f_it(mesh_.faces_begin()), f_end(mesh_.faces_end());
@@ -206,9 +206,9 @@ initialize()
//-----------------------------------------------------------------------------
template <class DecimaterT>
template <class MeshT>
float
ModHausdorffT<DecimaterT>::
ModHausdorffT<MeshT>::
collapse_priority(const CollapseInfo& _ci)
{
static Points points; points.clear();
@@ -268,9 +268,9 @@ collapse_priority(const CollapseInfo& _ci)
//-----------------------------------------------------------------------------
template <class DecimaterT>
template <class MeshT>
void
ModHausdorffT<DecimaterT>::
ModHausdorffT<MeshT>::
postprocess_collapse(const CollapseInfo& _ci)
{
static Points points;
@@ -351,9 +351,9 @@ postprocess_collapse(const CollapseInfo& _ci)
//-----------------------------------------------------------------------------
template <class DecimaterT>
typename ModHausdorffT<DecimaterT>::Scalar
ModHausdorffT<DecimaterT>::
template <class MeshT>
typename ModHausdorffT<MeshT>::Scalar
ModHausdorffT<MeshT>::
compute_sqr_error(FaceHandle _fh, const Point& _p) const
{
typename Mesh::CFVIter fv_it = mesh_.cfv_iter(_fh);