https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 272158b7b13f69c9dec24c1d2f5e1b69cedc16a0 authored by Dmitry Yu. Naumov on 03 January 2023, 10:27:29 UTC
Merge branch 'UpdateCopyrightYears' into 'master'
Tip revision: 272158b
QuadraticMeshGenerator.h
/**
 * \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 <memory>

namespace MeshLib
{
class Mesh;
}

namespace MeshLib
{
/// Create a quadratic order mesh from the linear order mesh. For some element
/// types like Quad-4, a centre node might be added if the \c add_centre_node
/// flag is set, yielding a Quad-9.
std::unique_ptr<Mesh> createQuadraticOrderMesh(Mesh const& linear_mesh,
                                               bool const add_centre_node);

} // namespace MeshLib
back to top