OGS
Utils.h
Go to the documentation of this file.
1
12#pragma once
13
14#include <vector>
15
16#include "GeoLib/Point.h"
17
18namespace GeoLib
19{
24std::vector<GeoLib::Point*> generateEquidistantPoints(
25 MathLib::Point3d const& begin, MathLib::Point3d const& end,
26 int const number_of_subdivisions);
27} // namespace GeoLib
Definition of the Point class.
std::vector< GeoLib::Point * > generateEquidistantPoints(MathLib::Point3d const &begin, MathLib::Point3d const &end, int const number_of_subdivisions)
Definition Utils.cpp:18