Revision c663912757dfcb65b833343fbc2d21bbfb6ede38 authored by Dmitry Yu. Naumov on 27 April 2021, 16:24:11 UTC, committed by Dmitry Yu. Naumov on 27 April 2021, 16:24:11 UTC
Small fixes

See merge request ogs/ogs!3593
2 parent s 4e230d0 + f04baf1
Raw File
QuadraticMeshGenerator.h
/**
 * \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 <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