diff --git a/MathLib/MathPoint.h b/MathLib/MathPoint.h new file mode 100644 index 0000000000000000000000000000000000000000..c91de6d04bddf6de51a3917cdd537062b81a4220 --- /dev/null +++ b/MathLib/MathPoint.h @@ -0,0 +1,25 @@ +/** + * \file + * \date 2015-01-16 + * \brief Definition of the MathPoint class. + * + * \copyright + * Copyright (c) 2012-2015, OpenGeoSys Community (http://www.opengeosys.org) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/project/license + * + */ + +#ifndef MATHPOINT_H_ +#define MATHPOINT_H_ + +#include "TemplatePoint.h" + +namespace MathLib +{ +typedef MathLib::TemplatePoint<double,3> MathPoint; +} // end namespace MathLib + +#endif /* MATHPOINT_H_ */ +