Revision 7ecfd21e446422ee89338b574f7d0799be632330 authored by Tom Fischer on 13 July 2023, 16:24:13 UTC, committed by Tom Fischer on 13 July 2023, 16:24:13 UTC
Pass fixed output times to time stepper

See merge request ogs/ogs!4652
2 parent s 1630a2b + 6b93e41
Raw File
Utils.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 <vector>

#include "GeoLib/Point.h"

namespace GeoLib
{
/// Function generates equidistant points in the interval [begin, end]
/// according to the given number of subdivisions.
/// In case of zero subdivisions a vector containing the begin and the end point
/// is returned.
std::vector<GeoLib::Point*> generateEquidistantPoints(
    MathLib::Point3d const& begin, MathLib::Point3d const& end,
    int const number_of_subdivisions);
}  // namespace GeoLib
back to top