This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/geometry/smoothing.hpp
2020-02-12 14:37:51 +03:00

20 lines
557 B
C++
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

#pragma once
#include "geometry/point2d.hpp"
#include <vector>
namespace m2
{
using GuidePointsForSmooth = std::vector<std::pair<m2::PointD, m2::PointD>>;
// https://en.wikipedia.org/wiki/Centripetal_CatmullRom_spline
double constexpr kUniformAplha = 0.0;
double constexpr kCentripetalAlpha = 0.5;
double constexpr kChordalAlpha = 1.0;
void SmoothPaths(GuidePointsForSmooth const & guidePoints,
size_t newPointsPerSegmentCount, double smoothAlpha,
std::vector<std::vector<m2::PointD>> & paths);
} // namespace m2