From e9e319f1cc98eb8d1dc670c05bcfccecfec19a46 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Fri, 16 Jan 2015 12:03:30 +0100 Subject: [PATCH] [MaL] New base type for Points. --- MathLib/MathPoint.h | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 MathLib/MathPoint.h diff --git a/MathLib/MathPoint.h b/MathLib/MathPoint.h new file mode 100644 index 00000000000..c91de6d04bd --- /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_ */ + -- GitLab