swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 4b12ab4d055d3c080f93e52f7e5a4b2dec01d30e authored by Dmitri Naumov on 19 May 2021, 09:21:04 UTC
[GL] Make class members private.
Tip revision: 4b12ab4
QuadRule8.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 "QuadRule8.h"

namespace MeshLib
{
const unsigned QuadRule8::edge_nodes[4][3] = {
    {0, 1, 4},  // Edge 0
    {1, 2, 5},  // Edge 1
    {2, 3, 6},  // Edge 2
    {0, 3, 7}   // Edge 3
};

}  // end namespace MeshLib
back to top