mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-20 05:13:58 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
15 lines
376 B
C++
15 lines
376 B
C++
#pragma once
|
|
|
|
#include "geometry/point2d.hpp"
|
|
#include "geometry/rect2d.hpp"
|
|
#include "geometry/any_rect2d.hpp"
|
|
|
|
namespace df
|
|
{
|
|
|
|
double InterpolateDouble(double startV, double endV, double t);
|
|
m2::PointD InterpolatePoint(m2::PointD const & startPt, m2::PointD const & endPt, double t);
|
|
double InterpolateAngle(double startAngle, double endAngle, double t);
|
|
|
|
} // namespace df
|