https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: ce8845da39f686ab36ac22f413cb8402e2c960a7 authored by Tom Fischer on 16 March 2023, 15:30:16 UTC
Merge branch 'SmallImprovementsInNodePartitionedMeshReader' into 'master'
Tip revision: ce8845d
Tri.h
/**
 * \file
 * \author Thomas Fischer
 * \date   Sep 27, 2012
 * \brief  Definition of the Tri class.
 *
 * \copyright
 * Copyright (c) 2012-2023, OpenGeoSys Community (http://www.opengeosys.org)
 *            Distributed under a Modified BSD License.
 *              See accompanying file LICENSE.txt or
 *              http://www.opengeosys.org/project/license
 *
 */

#pragma once

#include "TemplateElement.h"
#include "TriRule3.h"
#include "TriRule6.h"


extern template class MeshLib::TemplateElement<MeshLib::TriRule3>;
extern template class MeshLib::TemplateElement<MeshLib::TriRule6>;

namespace MeshLib {
using Tri = TemplateElement<MeshLib::TriRule3>;
using Tri6 = TemplateElement<MeshLib::TriRule6>;
}
back to top