Hi all, I am trying to use the MMG3D library, but cannot find the definitions of face and edge of a tet.
i.e. the node numbering for the faces and edges in a tet cell.
where can I find them?
Thx.
Jay
Hi all, I am trying to use the MMG3D library, but cannot find the definitions of face and edge of a tet.
i.e. the node numbering for the faces and edges in a tet cell.
where can I find them?
Thx.
Jay
Hi Jay,
Thank you for trying Mmg.
The numbering convention of Mmg is hidden in the Doxygen documentation of the libmmgtypes.h file of the project (the file that contains the description of the Mmg data structures). Normally, you don’t need this information: it is sufficient to give to Mmg the tetra connectivity only (indices of the tetra vertices).
In any case, I will describe first how to use the Doxygen documentation, then I will detail the tetra numbering (so you are not forced to really build the documentation ).
cd mmg
mkdir build
cd build
cmake ..
make doc
firefox doc/mmg3d/html/index.html
Then you will have to navigate to find the libmmgtypes.h doc.
edges are numbered in the order of their extremities indices:
A face is numbered with the index of its opposite vertex:
Regards,
Algiane
Hi Algiane, Thanks for your answer, it helps.
BTW, The forum seems down for a half month. but now it is back to normal~good
Hi Jay,
Thank you for this feedback: the discourse server has been upgraded at the beginning of august, I am glad that it is back to normal now!
Regards,
Algiane