Welcome to mirror list, hosted at ThFree Co, Russian Federation.

feature_algo.hpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f30cd010d19b32371e7ed6e0c403ea261b16510f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#include "geometry/point2d.hpp"

class FeatureType;

namespace feature
{

m2::PointD GetCenter(FeatureType const & f, int scale);
m2::PointD GetCenter(FeatureType const & f);

double GetMinDistanceMeters(FeatureType const & ft, m2::PointD const & pt, int scale);
double GetMinDistanceMeters(FeatureType const & ft, m2::PointD const & pt);

}  // namespace feature