First checkin for OpenMesh 2.0
git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@2 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
188
Tools/Smoother/SmootherT.hh
Normal file
188
Tools/Smoother/SmootherT.hh
Normal file
@@ -0,0 +1,188 @@
|
||||
//=============================================================================
|
||||
//
|
||||
// OpenMesh
|
||||
// Copyright (C) 2003 by Computer Graphics Group, RWTH Aachen
|
||||
// www.openmesh.org
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// License
|
||||
//
|
||||
// This library is free software; you can redistribute it and/or modify it
|
||||
// under the terms of the GNU Lesser General Public License as published
|
||||
// by the Free Software Foundation, version 2.1.
|
||||
//
|
||||
// This library is distributed in the hope that it will be useful, but
|
||||
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
// Lesser General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU Lesser General Public
|
||||
// License along with this library; if not, write to the Free Software
|
||||
// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
||||
//
|
||||
//-----------------------------------------------------------------------------
|
||||
//
|
||||
// $Revision: 1802 $
|
||||
// $Date: 2008-05-19 11:55:07 +0200 (Mo, 19. Mai 2008) $
|
||||
//
|
||||
//=============================================================================
|
||||
|
||||
/** \file SmootherT.hh
|
||||
|
||||
*/
|
||||
|
||||
//=============================================================================
|
||||
//
|
||||
// CLASS SmootherT
|
||||
//
|
||||
//=============================================================================
|
||||
|
||||
#ifndef OPENMESH_SMOOTHER_SMOOTHERT_HH
|
||||
#define OPENMESH_SMOOTHER_SMOOTHERT_HH
|
||||
|
||||
|
||||
//== INCLUDES =================================================================
|
||||
|
||||
#include <OpenMesh/Core/System/config.hh>
|
||||
#include <OpenMesh/Core/Utils/Property.hh>
|
||||
#include <OpenMesh/Core/Utils/Noncopyable.hh>
|
||||
|
||||
//== FORWARDDECLARATIONS ======================================================
|
||||
|
||||
//== NAMESPACES ===============================================================
|
||||
|
||||
namespace OpenMesh {
|
||||
namespace Smoother {
|
||||
|
||||
//== CLASS DEFINITION =========================================================
|
||||
|
||||
/** Base class for smoothing algorithms.
|
||||
*/
|
||||
template <class Mesh>
|
||||
class SmootherT : private Utils::Noncopyable
|
||||
{
|
||||
public:
|
||||
|
||||
typedef typename Mesh::Scalar Scalar;
|
||||
typedef typename Mesh::Point Point;
|
||||
typedef typename Mesh::Normal NormalType;
|
||||
typedef typename Mesh::VertexHandle VertexHandle;
|
||||
typedef typename Mesh::EdgeHandle EdgeHandle;
|
||||
|
||||
// initialize smoother
|
||||
enum Component {
|
||||
Tangential, ///< Smooth tangential direction
|
||||
Normal, ///< Smooth normal direction
|
||||
Tangential_and_Normal ///< Smooth tangential and normal direction
|
||||
};
|
||||
|
||||
enum Continuity {
|
||||
C0,
|
||||
C1,
|
||||
C2
|
||||
};
|
||||
|
||||
public:
|
||||
|
||||
// constructor & destructor
|
||||
SmootherT( Mesh& _mesh );
|
||||
virtual ~SmootherT();
|
||||
|
||||
|
||||
public:
|
||||
|
||||
/// Initialize smoother
|
||||
/// \param _comp Determine component to smooth
|
||||
/// \param _cont
|
||||
void initialize(Component _comp, Continuity _cont);
|
||||
|
||||
|
||||
//@{
|
||||
/// Set local error
|
||||
void set_relative_local_error(Scalar _err);
|
||||
void set_absolute_local_error(Scalar _err);
|
||||
void disable_local_error_check();
|
||||
//@}
|
||||
|
||||
|
||||
/// Do _n smoothing iterations
|
||||
virtual void smooth(unsigned int _n);
|
||||
|
||||
|
||||
|
||||
/// Find active vertices. Resets tagged status !
|
||||
void set_active_vertices();
|
||||
|
||||
|
||||
private:
|
||||
|
||||
// single steps of smoothing
|
||||
void compute_new_positions();
|
||||
void project_to_tangent_plane();
|
||||
void local_error_check();
|
||||
void move_points();
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
// override these
|
||||
virtual void compute_new_positions_C0() = 0;
|
||||
virtual void compute_new_positions_C1() = 0;
|
||||
|
||||
|
||||
|
||||
protected:
|
||||
|
||||
// misc helpers
|
||||
|
||||
const Point& orig_position(VertexHandle _vh) const
|
||||
{ return mesh_.property(original_positions_, _vh); }
|
||||
|
||||
const NormalType& orig_normal(VertexHandle _vh) const
|
||||
{ return mesh_.property(original_normals_, _vh); }
|
||||
|
||||
const Point& new_position(VertexHandle _vh) const
|
||||
{ return mesh_.property(new_positions_, _vh); }
|
||||
|
||||
void set_new_position(VertexHandle _vh, const Point& _p)
|
||||
{ mesh_.property(new_positions_, _vh) = _p; }
|
||||
|
||||
bool is_active(VertexHandle _vh) const
|
||||
{ return mesh_.property(is_active_, _vh); }
|
||||
|
||||
Component component() const { return component_; }
|
||||
Continuity continuity() const { return continuity_; }
|
||||
|
||||
protected:
|
||||
|
||||
Mesh& mesh_;
|
||||
|
||||
|
||||
private:
|
||||
|
||||
Scalar tolerance_;
|
||||
Scalar normal_deviation_;
|
||||
Component component_;
|
||||
Continuity continuity_;
|
||||
|
||||
OpenMesh::VPropHandleT<Point> original_positions_;
|
||||
OpenMesh::VPropHandleT<NormalType> original_normals_;
|
||||
OpenMesh::VPropHandleT<Point> new_positions_;
|
||||
OpenMesh::VPropHandleT<bool> is_active_;
|
||||
};
|
||||
|
||||
|
||||
//=============================================================================
|
||||
} // namespace Smoother
|
||||
} // namespace OpenMesh
|
||||
//=============================================================================
|
||||
#if defined(OM_INCLUDE_TEMPLATES) && !defined(OPENMESH_SMOOTHERT_C)
|
||||
#define OPENMESH_SMOOTHERT_TEMPLATES
|
||||
#include "SmootherT.cc"
|
||||
#endif
|
||||
//=============================================================================
|
||||
#endif // OPENMESH_SMOOTHER_SMOOTHERT_HH defined
|
||||
//=============================================================================
|
||||
|
||||
Reference in New Issue
Block a user