https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: f4018e95df7a45517d04f5ad81cfa9341df2ba4c authored by Lars Bilke on 21 September 2024, 07:01:10 UTC
[ci] Disable ufz-bgr/hpc/tutorial pipeline.
Tip revision: f4018e9
TriRule3.cpp
/**
 * \file
 * \copyright
 * Copyright (c) 2012-2024, 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 "TriRule3.h"

namespace MeshLib
{
const unsigned TriRule3::edge_nodes[3][2] = {
    {0, 1},  // Edge 0
    {1, 2},  // Edge 1
    {2, 0},  // Edge 2
};
}  // end namespace MeshLib
back to top