paella/Code/include/Meshing/Meshing.hpp

27 lines
738 B
C++
Raw Normal View History

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