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: e0a997097db7cd75091d87fad455da47694d3473 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#pragma once

#include "geometry/point2d.hpp"

class FeatureType;

namespace feature
{

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

}