https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: a43d9d8a00620f479f07022332a25a927e6fab05 authored by Christoph Lehmann on 24 August 2023, 08:37:27 UTC
Merge branch 'rtp-assemble-only-once' into 'master'
Tip revision: a43d9d8
LineRule3.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 "LineRule3.h"

namespace MeshLib
{
const unsigned LineRule3::edge_nodes[1][3] = {
    {0, 1, 2}  // Edge 0
};

}  // end namespace MeshLib
back to top