From 6632995702942907a5c3b97ae7f784af0b976124 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20M=C3=B6bius?= Date: Mon, 15 Nov 2010 09:27:35 +0000 Subject: [PATCH] Updated subdivider docs git-svn-id: http://www.openmesh.org/svnrepo/OpenMesh/trunk@343 fdac6126-5c0c-442c-9429-916003d36597 --- .../Subdivider/Uniform/ModifiedButterFlyT.hh | 11 ++++++++++- ...qrt3InterpolatingSubdividerLabsikGreinerT.hh | 17 ++++++++++++----- 2 files changed, 22 insertions(+), 6 deletions(-) diff --git a/src/OpenMesh/Tools/Subdivider/Uniform/ModifiedButterFlyT.hh b/src/OpenMesh/Tools/Subdivider/Uniform/ModifiedButterFlyT.hh index 66d0e94f..1fe7203f 100644 --- a/src/OpenMesh/Tools/Subdivider/Uniform/ModifiedButterFlyT.hh +++ b/src/OpenMesh/Tools/Subdivider/Uniform/ModifiedButterFlyT.hh @@ -39,7 +39,7 @@ * * \*==========================================================================*/ -/** \file ModifiedButterflyT.hh +/** \file ModifiedButterFlyT.hh The modified butterfly scheme of Denis Zorin, Peter Schröder and Wim Sweldens, ``Interpolating subdivision for meshes with arbitrary topology,'' in Proceedings @@ -79,6 +79,15 @@ namespace Uniform { // BEGIN_NS_UNIFORM //== 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 class ModifiedButterflyT : public SubdividerT { diff --git a/src/OpenMesh/Tools/Subdivider/Uniform/Sqrt3InterpolatingSubdividerLabsikGreinerT.hh b/src/OpenMesh/Tools/Subdivider/Uniform/Sqrt3InterpolatingSubdividerLabsikGreinerT.hh index bc35ffe1..ac606f1e 100644 --- a/src/OpenMesh/Tools/Subdivider/Uniform/Sqrt3InterpolatingSubdividerLabsikGreinerT.hh +++ b/src/OpenMesh/Tools/Subdivider/Uniform/Sqrt3InterpolatingSubdividerLabsikGreinerT.hh @@ -40,10 +40,12 @@ \*==========================================================================*/ /** \file Sqrt3InterpolatingSubdividerLabsikGreinerT.hh - - Interpolating Labsik Greiner Subdivider as described in "interpolating sqrt(3) subdivision" Labsik & Greiner, 2000 - clement.courbet@ecp.fr - + * + * Interpolating Labsik Greiner Subdivider as described in + * "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 * - */ + * Implementation of the interpolating Labsik Greiner Subdivider as described in + * "interpolating sqrt(3) subdivision" Labsik & Greiner, 2000 + * + * Clement Courbet - clement.courbet@ecp.fr +*/ + template class InterpolatingSqrt3LGT : public SubdividerT< MeshType, RealType > {