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

geometry.pro « geometry - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 886d24f55e95f379c80258428f74bdfcae97b171 (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
31
32
33
34
35
36
37
38
39
40
41
# Geomery library.

TARGET = geometry
TEMPLATE = lib
CONFIG += staticlib

ROOT_DIR = ..
DEPENDENCIES = base

include($$ROOT_DIR/common.pri)

SOURCES += \
  distance_on_sphere.cpp \
  screenbase.cpp \
  packer.cpp \
  robust_orientation.cpp \
  region2d/binary_operators.cpp \

HEADERS += \
  rect2d.hpp \
  point2d.hpp \
  distance.hpp \
  distance_on_sphere.hpp \
  angles.hpp \
  screenbase.hpp \
  cellid.hpp \
  rect_intersect.hpp \
  covering.hpp \
  covering_utils.hpp \
  packer.hpp \
  pointu_to_uint64.hpp \
  simplification.hpp \
  transformations.hpp \
  tree4d.hpp \
  polygon.hpp \
  region2d.hpp \
  robust_orientation.hpp \
  any_rect2d.hpp \
  region2d/binary_operators.hpp \
  region2d/boost_concept.hpp \
  avg_vector.hpp \