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:
authorr.kuznetsov <r.kuznetsov@corp.mail.ru>2015-07-31 09:24:44 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:59:35 +0300
commit8c9f87e66ac5bc12b082493dd638aa72c70ab101 (patch)
treea4a6647bdedc0355b42f66d68fcdb038bb3838d1 /geometry
parent6b014d1414ab893e3934cb3d1a1296621ebc0ef4 (diff)
Integration routing rendering in old engine
Diffstat (limited to 'geometry')
-rw-r--r--geometry/polyline2d.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/geometry/polyline2d.hpp b/geometry/polyline2d.hpp
index a8f2368efc..721036781c 100644
--- a/geometry/polyline2d.hpp
+++ b/geometry/polyline2d.hpp
@@ -89,6 +89,11 @@ public:
return m_points[idx];
}
+ vector<Point<T> > const & GetPoints() const
+ {
+ return m_points;
+ }
+
friend string DebugPrint(PolylineT<T> const & p)
{
return ::DebugPrint(p.m_points);