![]() |
Mmg
Simplicial remeshers (mesh adaptation, isovalue discretization, lagrangian movement)
|
This example:
We read mesh and solution files using the MMG2D_loadMesh and MMG2D_loadSol functions. Results are saved using MMG2D_saveMesh and MMG2D_saveSol functions.
Example 1
Command line to link the application with the mmg2d static librarygcc -I$CMAKE_INSTALL_PREFIX/include/mmg/mmg2d main.c -L$CMAKE_INSTALL_PREFIX/lib -lmmg2d -lm
Example 2
Command line to link the application with the mmg2d shared library:
gcc -I$CMAKE_INSTALL_PREFIX/include/mmg/mmg2d main.c -L$CMAKE_INSTALL_PREFIX/lib -lmmg2dexport LD_LIBRARY_PATH=$CMAKE_INSTALL_PREFIX/lib:$LD_LIBRARY_PATH