20 lines
449 B
C++
20 lines
449 B
C++
#ifndef GEOMETRY_HPP
|
|
#define GEOMETRY_HPP
|
|
|
|
|
|
#include<Base.hpp>
|
|
#include<Circle.hpp>
|
|
#include<MathFunctions.hpp>
|
|
#include<Mesh.hpp>
|
|
#include<Point.hpp>
|
|
#include<Spline.hpp>
|
|
#include<Vector.hpp>
|
|
|
|
////////////////////////////////////////////////////////////
|
|
/// \defgroup geometry Geometry module
|
|
///
|
|
/// Various geometry elements such as vectors, splines and meshes
|
|
////////////////////////////////////////////////////////////
|
|
|
|
#endif // GEOMETRY_HPP
|