https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 49e7c4857881b73dfcda832b6bfb57573417cfd3 authored by Christoph Lehmann on 31 October 2023, 19:33:15 UTC
Merge branch 'reflect-io-for-tuples' into 'master'
Tip revision: 49e7c48
LineRule2.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 "LineRule2.h"

namespace MeshLib
{
const unsigned LineRule2::edge_nodes[1][2] = {
    {0, 1}  // Edge 0
};
}  // end namespace MeshLib
back to top