/* * BaseShapes.hpp * * Created on: Jun 18, 2010 * Author: crueger */ #ifndef BASESHAPES_HPP_ #define BASESHAPES_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Shapes/Shape.hpp" Shape Sphere(); Shape Sphere(const Vector ¢er,double radius); Shape Ellipsoid(const Vector ¢er, const Vector &radius); Shape Cuboid(); Shape Cuboid(const Vector &corner1, const Vector &corner2); #endif /* BASESHAPES_HPP_ */