swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 1f00a0fb0ff577a1057da3f6f8a7afe0fa1a57f4 authored by Dmitry Yu. Naumov on 25 March 2021, 11:18:14 UTC
Merge branch 'NomenclatureUpdate' into 'master'
Tip revision: 1f00a0f
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