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: bc560f64dd7420bb7db55ba14542b13e5b0fbd11 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Geomery library.

TARGET = geometry
TEMPLATE = lib
CONFIG += staticlib warn_on

ROOT_DIR = ..

include($$ROOT_DIR/common.pri)

SOURCES += \
  algorithm.cpp \
  angles.cpp \
  clipping.cpp \
  distance_on_sphere.cpp \
  latlon.cpp \
  mercator.cpp \
  packer.cpp \
  region2d/binary_operators.cpp \
  robust_orientation.cpp \
  screenbase.cpp \
  segment2d.cpp \
  spline.cpp \
  triangle2d.cpp \

HEADERS += \
  algorithm.hpp \
  angles.hpp \
  clipping.hpp \
  any_rect2d.hpp \
  avg_vector.hpp \
  cellid.hpp \
  covering.hpp \
  covering_utils.hpp \
  distance.hpp \
  distance_on_sphere.hpp \
  latlon.hpp \
  mercator.hpp \
  packer.hpp \
  point2d.hpp \
  pointu_to_uint64.hpp \
  polygon.hpp \
  polyline2d.hpp \
  rect2d.hpp \
  rect_intersect.hpp \
  region2d.hpp \
  region2d/binary_operators.hpp \
  region2d/boost_concept.hpp \
  robust_orientation.hpp \
  screenbase.hpp \
  segment2d.hpp \
  simplification.hpp \
  spline.hpp \
  transformations.hpp \
  tree4d.hpp \
  triangle2d.hpp \