From cb52e79498dee02ae4a1740b9658bf9509f09aa6 Mon Sep 17 00:00:00 2001 From: Thomas Fischer <thomas.fischer@ufz.de> Date: Thu, 27 Sep 2012 09:02:41 +0200 Subject: [PATCH] added typedef for first order Triangle in Tri.h --- MeshLib/Elements/Tri.h | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 MeshLib/Elements/Tri.h diff --git a/MeshLib/Elements/Tri.h b/MeshLib/Elements/Tri.h new file mode 100644 index 00000000000..d0b4be2b047 --- /dev/null +++ b/MeshLib/Elements/Tri.h @@ -0,0 +1,23 @@ +/** + * Copyright (c) 2012, OpenGeoSys Community (http://www.opengeosys.net) + * Distributed under a Modified BSD License. + * See accompanying file LICENSE.txt or + * http://www.opengeosys.org/LICENSE.txt + * + * \file Tri.h + * + * Created on Sep 27, 2012 by Thomas Fischer + */ + +#ifndef TRI_H_ +#define TRI_H_ + +#include "TemplateTri.h" + +namespace MeshLib { + +typedef TemplateTri<1,3> Tri; + +} + +#endif /* TRI_H_ */ -- GitLab