⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jacobilaplacesmoothert.cc

📁 penMesh is a generic and efficient data structure for representing and manipulating polygonal meshes
💻 CC
字号:
//=============================================================================//                                                                            //                               OpenMesh                                     //      Copyright (C) 2001-2005 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 Library General Public License as published  //   by the Free Software Foundation, version 2.                             //                                                                             //   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         //   Library General Public License for more details.                          //                                                                            //   You should have received a copy of the GNU Library General Public         //   License along with this library; if not, write to the Free Software       //   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.                 //                                                                            //-----------------------------------------------------------------------------//                                                                            //   $Revision: 1.3 $//   $Date: 2005-12-21 13:58:53 $//                                                                            //=============================================================================/** \file JacobiLaplaceSmootherT.cc     *///=============================================================================////  CLASS JacobiLaplaceSmootherT - IMPLEMENTATION////=============================================================================#define OPENMESH_JACOBI_LAPLACE_SMOOTHERT_C//== INCLUDES =================================================================#include <OpenMesh/Tools/Smoother/JacobiLaplaceSmootherT.hh>//== NAMESPACES ===============================================================namespace OpenMesh {namespace Smoother {//== IMPLEMENTATION ========================================================== template <class Mesh>voidJacobiLaplaceSmootherT<Mesh>::smooth(unsigned int _n){  if (Self::continuity() > Self::C0)  {    Self::mesh_.add_property(umbrellas_);    if (Self::continuity() > Self::C1)      Self::mesh_.add_property(squared_umbrellas_);  }  LaplaceSmootherT<Mesh>::smooth(_n);  if (Self::continuity() > Self::C0)  {    Self::mesh_.remove_property(umbrellas_);    if (Self::continuity() > Self::C1)      Self::mesh_.remove_property(squared_umbrellas_);  }}//-----------------------------------------------------------------------------template <class Mesh>voidJacobiLaplaceSmootherT<Mesh>::compute_new_positions_C0(){  typename Mesh::VertexIter  v_it, v_end(Self::mesh_.vertices_end());  typename Mesh::CVVIter     vv_it;  typename Mesh::Normal      u, p, zero(0,0,0);  typename Mesh::Scalar      w;  for (v_it=Self::mesh_.vertices_begin(); v_it!=v_end; ++v_it)  {    if (is_active(v_it))    {      // compute umbrella      u = zero;      for (vv_it=Self::mesh_.cvv_iter(v_it); vv_it; ++vv_it)      {	w = weight(Self::mesh_.edge_handle(vv_it.current_halfedge_handle()));	u += w * vector_cast<typename Mesh::Normal>(Self::mesh_.point(vv_it));      }      u *= weight(v_it);      u -= vector_cast<typename Mesh::Normal>(Self::mesh_.point(v_it));      // damping      u *= 0.5;          // store new position      p  = vector_cast<typename Mesh::Normal>(Self::mesh_.point(v_it));      p += u;      set_new_position(v_it, p);    }  }}//-----------------------------------------------------------------------------template <class Mesh>voidJacobiLaplaceSmootherT<Mesh>::compute_new_positions_C1(){  typename Mesh::VertexIter  v_it, v_end(Self::mesh_.vertices_end());  typename Mesh::CVVIter     vv_it;  typename Mesh::Normal      u, uu, p, zero(0,0,0);  typename Mesh::Scalar      w, diag;  // 1st pass: compute umbrellas  for (v_it=Self::mesh_.vertices_begin(); v_it!=v_end; ++v_it)  {    u = zero;    for (vv_it=Self::mesh_.cvv_iter(v_it); vv_it; ++vv_it)    {      w  = weight(Self::mesh_.edge_handle(vv_it.current_halfedge_handle()));      u -= w * vector_cast<typename Mesh::Normal>(Self::mesh_.point(vv_it));    }    u *= weight(v_it);    u += vector_cast<typename Mesh::Normal>(Self::mesh_.point(v_it));    Self::mesh_.property(umbrellas_, v_it) = u;  }  // 2nd pass: compute updates  for (v_it=Self::mesh_.vertices_begin(); v_it!=v_end; ++v_it)  {    if (is_active(v_it))    {      uu   = zero;      diag = 0.0;         for (vv_it=Self::mesh_.cvv_iter(v_it); vv_it; ++vv_it)      {	w     = weight(Self::mesh_.edge_handle(vv_it.current_halfedge_handle()));	uu   -= Self::mesh_.property(umbrellas_, vv_it);	diag += (w * weight(vv_it) + 1.0f) * w;      }      uu   *= weight(v_it);      diag *= weight(v_it);      uu   += Self::mesh_.property(umbrellas_, v_it);      if (diag) uu *= 1.0f/diag;      // damping      uu *= 0.25f;          // store new position      p  = vector_cast<typename Mesh::Normal>(Self::mesh_.point(v_it));      p -= uu;      set_new_position(v_it, p);    }  }}//=============================================================================} // namespace Smoother} // namespace OpenMesh//=============================================================================

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -