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

diamond_box.cpp « geometry - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 60e58fabe0d4dba8d68e27740542f3a73c76a52b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include "geometry/diamond_box.hpp"

using namespace std;

namespace m2
{
DiamondBox::DiamondBox(vector<PointD> const & points)
{
  for (auto const & p : points)
    Add(p);
}
}  // namespace m2