https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: db106993b096e8ef3378e9154d46b8e1a79e82b8 authored by Christoph Lehmann on 29 September 2023, 08:04:56 UTC
Merge branch 'fix-is-linear-output-off-by-one' into 'master'
Tip revision: db10699
TriRule3.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 "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