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

constants.hpp « drape - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5cbe4d88db80200d7412c0a18b45c0c2b71c578d (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
#pragma once

#include "utils/projection.hpp"

namespace dp
{

namespace depth
{

float constexpr POSITION_ACCURACY = minDepth + 1.0f;
float constexpr MY_POSITION_MARK = maxDepth - 1.0f;

} // namespace depth

namespace displacement
{

int constexpr kDefaultMode = 0x1;
int constexpr kHotelMode = 0x2;

int constexpr kAllModes = kDefaultMode | kHotelMode;

} // namespace displacement

} // namespace dp