swh:1:snp:f521c49ab17ef7db6ec70b2430e1ed203f50383f
Raw File
Tip revision: 902b1c0c2e4cb6193593843906ec5682b89f807c authored by Tobias Meisel on 08 March 2021, 12:59:46 UTC
GocadTSurfaceReader: Add check for line endings
Tip revision: 902b1c0
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