https://gitlab.opengeosys.org/ogs/ogs.git
Raw File
Tip revision: d54fd7e3dbb7f230874cd587d289b2dbe97334e1 authored by Tobias Meisel on 08 November 2023, 08:17:39 UTC
Merge branch 'chunk_size' into 'master'
Tip revision: d54fd7e
scaleMeshPropertyVector.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
 *
 */

#pragma once

#include <string>

namespace MeshLib
{
class Mesh;

/// Scales the mesh property with name \c property_name by given \c factor.
/// \note The property must be a "double" property.
void scaleMeshPropertyVector(Mesh& mesh,
                             std::string const& property_name,
                             double factor);
}  // namespace MeshLib
back to top