swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 65a4b6d6734f8a0a53256a1068cf4dd45005508a authored by MPitz on 09 December 2021, 09:04:45 UTC
Merge branch 'michaelpitz-master-patch-45683' into 'master'
Tip revision: 65a4b6d
TriRule6.cpp
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2021, 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