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

point_to_int64.hpp « indexer - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2e8eef3166d88ac736b5b61efeb4673200ee82ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#pragma once

#include "geometry/cellid.hpp"
#include "geometry/rect2d.hpp"

#include "std/utility.hpp"


#define POINT_COORD_BITS 30

typedef m2::CellId<19> RectId;

m2::PointU PointD2PointU(double x, double y, uint32_t coordBits);
inline m2::PointU PointD2PointU(m2::PointD const & pt, uint32_t coordBits)
{
  return PointD2PointU(pt.x, pt.y, coordBits);
}

m2::PointD PointU2PointD(m2::PointU const & p, uint32_t coordBits);

int64_t PointToInt64(double x, double y, uint32_t coordBits);
inline int64_t PointToInt64(m2::PointD const & pt, uint32_t coordBits)
{
  return PointToInt64(pt.x, pt.y, coordBits);
}

m2::PointD Int64ToPoint(int64_t v, uint32_t coordBits);

pair<int64_t, int64_t> RectToInt64(m2::RectD const & r, uint32_t coordBits);
m2::RectD Int64ToRect(pair<int64_t, int64_t> const & p, uint32_t coordBits);