swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 54f019ef1026f8a3ab8fafd49eeec7cfb62e5abd authored by renchao_lu on 12 March 2021, 00:26:53 UTC
[CL] rename function.
Tip revision: 54f019e
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