Updated subdivider docs

git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@343 fdac6126-5c0c-442c-9429-916003d36597
This commit is contained in:
Jan Möbius
2010-11-15 09:27:35 +00:00
parent 5b7d0831fa
commit 6632995702
2 changed files with 22 additions and 6 deletions

View File

@@ -39,7 +39,7 @@
* * * *
\*==========================================================================*/ \*==========================================================================*/
/** \file ModifiedButterflyT.hh /** \file ModifiedButterFlyT.hh
The modified butterfly scheme of Denis Zorin, Peter Schröder and Wim Sweldens, The modified butterfly scheme of Denis Zorin, Peter Schröder and Wim Sweldens,
``Interpolating subdivision for meshes with arbitrary topology,'' in Proceedings ``Interpolating subdivision for meshes with arbitrary topology,'' in Proceedings
@@ -79,6 +79,15 @@ namespace Uniform { // BEGIN_NS_UNIFORM
//== CLASS DEFINITION ========================================================= //== CLASS DEFINITION =========================================================
/** Modified Butterfly subdivision algorithm
*
* Implementation of the modified butterfly scheme of Denis Zorin, Peter Schröder and Wim Sweldens,
* ``Interpolating subdivision for meshes with arbitrary topology,'' in Proceedings
* of SIGGRAPH 1996, ACM SIGGRAPH, 1996, pp. 189-192.
*
* Clement Courbet - clement.courbet@ecp.fr
*/
template <typename MeshType, typename RealType = float> template <typename MeshType, typename RealType = float>
class ModifiedButterflyT : public SubdividerT<MeshType, RealType> class ModifiedButterflyT : public SubdividerT<MeshType, RealType>
{ {

View File

@@ -40,10 +40,12 @@
\*==========================================================================*/ \*==========================================================================*/
/** \file Sqrt3InterpolatingSubdividerLabsikGreinerT.hh /** \file Sqrt3InterpolatingSubdividerLabsikGreinerT.hh
*
Interpolating Labsik Greiner Subdivider as described in "interpolating sqrt(3) subdivision" Labsik & Greiner, 2000 * Interpolating Labsik Greiner Subdivider as described in
clement.courbet@ecp.fr * "Interpolating sqrt(3) subdivision" Labsik & Greiner, 2000
*
* Clement Courbet - clement.courbet@ecp.fr
*
*/ */
//============================================================================= //=============================================================================
@@ -94,7 +96,12 @@ namespace Uniform { // BEGIN_NS_UNIFORM
/** %Uniform Interpolating Sqrt3 subdivision algorithm /** %Uniform Interpolating Sqrt3 subdivision algorithm
* *
* Implementation of the interpolating Labsik Greiner Subdivider as described in
* "interpolating sqrt(3) subdivision" Labsik & Greiner, 2000
*
* Clement Courbet - clement.courbet@ecp.fr
*/ */
template <typename MeshType, typename RealType = float> template <typename MeshType, typename RealType = float>
class InterpolatingSqrt3LGT : public SubdividerT< MeshType, RealType > class InterpolatingSqrt3LGT : public SubdividerT< MeshType, RealType >
{ {