https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: ff91faa75a3af6c2e90bafdc7c50018e411cf760 authored by Dmitry Yu. Naumov on 05 October 2023, 13:14:25 UTC
Merge branch 'THM_FixPrevIceVolumeFraction' into 'master'
Tip revision: ff91faa
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