https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: 968c386c7e8c2ed3a335842f26848004de627ba5 authored by Lars Bilke on 21 July 2023, 12:34:49 UTC
Merge branch 'vale-fixes' into 'master'
Tip revision: 968c386
ComputeElementVolumeNumerically.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
 *
 * Created on April 26, 2023, 5:52 PM
 */

#pragma once

namespace MeshLib
{
class Element;
}

namespace MeshToolsLib
{

double computeElementVolumeNumerically(MeshLib::Element const& e);
}  // namespace MeshToolsLib
back to top