paella/Code/include/Meshing/Meshing.hpp

27 lines
738 B
C++

#ifndef MESHING_HPP
#define MESHING_HPP
//////////////////////////////////////////////////
/// \defgroup meshing Meshing module
///
/// Contains the function and classes to mesh 3D skeletons
///
/// This modules contains a few binaries :
/// - `MainDisplay`
/// - `TestJunction3`
/// - `TestJunction4`
///
/// \section MainDisplay
/// This program simply loads a `.skl` file and display it with
/// OpenGL.
///
/// \section TestJunction
/// This program simply computes the result of the junctions on three circles.
/// `TestJunction3` computes a junction from three circles and
/// `TestJunction4` computes it from four.
//////////////////////////////////////////////////
#include <Meshing/Skeleton3D.hpp>
#endif // MESHING_HPP