pfe/LISEZMOI

28 lines
825 B
Plaintext
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

Projet de fin d'étude de M2 Info Géométrie et Informatique Graphique.
Compilation :
cmake -Bbuild -DCMAKE_BUILD_TYPE=Release && cmake --build build
Compilation (pour développeurs) :
cmake -Bbuild \
-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_CXX_FLAGS="-Wall -Wextra" \
&& cmake --build build
Pour utiliser une installation système de VTK :
-DUSE_SYSTEM_VTK=ON
Pour désactiver la visualisation :
-DENABLE_VIEWER=OFF
Exécution :
build/pfe fit|analyze tetmesh polydata [radiusScale relaxationIterCount]
Produit un fichier nommé out.vtu. En mode `analyze`, ce fichier
contient le même modèle que tetmesh mais avec les informations de
qualité ajoutée, et affiche des statistiques dans la console.
En mode `fit`, adapte le tetmesh au polydata, puis effectue
l'analyse comme `analyze`.