Revision 307696753f6e7a224b6f3e2113598744171f704d authored by Norbert Grunwald on 10 May 2023, 18:02:03 UTC, committed by Norbert Grunwald on 10 May 2023, 18:02:03 UTC
[T/TH2M] Fix Ogata-Banks test

See merge request ogs/ogs!4533
2 parent s 8cee6d8 + 776d608
Raw File
TriRule6.cpp
/**
 * \file
 * \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
 *
 */

#include "TriRule6.h"

namespace MeshLib
{
const unsigned TriRule6::edge_nodes[3][3] = {
    {0, 1, 3},  // Edge 0
    {1, 2, 4},  // Edge 1
    {2, 0, 5},  // Edge 2
};

}  // end namespace MeshLib
back to top