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

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Melnichek <melnichek@gmail.com>2011-09-10 17:54:22 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 01:23:35 +0300
commit4d88f6f48f703b942d2923d0aceef7a1b76593e9 (patch)
tree2dee73ee9cef2a8d441a4f202d2cf29940a1dd0c /geometry
parentf2cc45d555e90e1c06a0e45554ea16e90023e520 (diff)
Added comments.
Diffstat (limited to 'geometry')
-rw-r--r--geometry/covering_utils.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/geometry/covering_utils.hpp b/geometry/covering_utils.hpp
index 04f67f0089..711a4c09a8 100644
--- a/geometry/covering_utils.hpp
+++ b/geometry/covering_utils.hpp
@@ -10,8 +10,10 @@
namespace covering
{
+// Result of an intersection between object and cell.
enum CellObjectIntersection
{
+ // No intersection. It is important, that its value is 0, so one can do if (intersection) ... .
CELL_OBJECT_NO_INTERSECTION = 0,
CELL_OBJECT_INTERSECT = 1,
CELL_INSIDE_OBJECT = 2,