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 > {