Doxygen: Fixed duplicate doc

This commit is contained in:
Jan Möbius
2022-01-18 10:12:19 +01:00
parent 7c5363916d
commit 16b47e68c2

View File

@@ -73,15 +73,6 @@ namespace Decimater {
template<class Mesh> template<class Mesh>
struct CollapseInfoT { struct CollapseInfoT {
public: public:
/** Initializing constructor.
*
* Given a mesh and a halfedge handle of the halfedge to be collapsed
* all important information of a halfedge collapse will be stored.
* \param _mesh Mesh source
* \param _heh Halfedge to collapse. The direction of the halfedge
* defines the direction of the collapse, i.e. the from-vertex
* will be removed and the to-vertex remains.
*/
CollapseInfoT(Mesh& _mesh, typename Mesh::HalfedgeHandle _heh); CollapseInfoT(Mesh& _mesh, typename Mesh::HalfedgeHandle _heh);
Mesh& mesh; Mesh& mesh;
@@ -106,7 +97,11 @@ struct CollapseInfoT {
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
/** /** Initializing constructor.
*
* Given a mesh and a halfedge handle of the halfedge to be collapsed
* all important information of a halfedge collapse will be stored.
*
* Local configuration of halfedge collapse to be stored in CollapseInfoT: * Local configuration of halfedge collapse to be stored in CollapseInfoT:
* *
* vl * vl
@@ -124,6 +119,9 @@ struct CollapseInfoT {
* *
* @param _mesh Reference to mesh * @param _mesh Reference to mesh
* @param _heh The halfedge (v0 -> v1) defining the collapse * @param _heh The halfedge (v0 -> v1) defining the collapse
* The direction of the halfedge
* defines the direction of the collapse, i.e. the from-vertex
* will be removed and the to-vertex remains.
*/ */
template<class Mesh> template<class Mesh>
inline CollapseInfoT<Mesh>::CollapseInfoT(Mesh& _mesh, inline CollapseInfoT<Mesh>::CollapseInfoT(Mesh& _mesh,