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
AgeCommit message (Collapse)Author
2019-04-22[booking][search] review fixesArsentiy Milchakov
2019-04-22[booking][search] booking filter improvement. review fixesArsentiy Milchakov
2019-04-10[std][geometry] Use new include style for geometry.tatiana-yan
2019-04-09[std] Remove std/array.hpptatiana-yan
2019-03-07Take in account z offset of an overlay when computing the scrolling distance ↵Daria Volvenkova
of the map.
2019-03-01[vulkan] Correction of Y and Z coordinates moved to the shaders.Daria Volvenkova
2019-03-01[vulkan] Added depth format chooser.kuznetsov
2018-12-26[base][geocoder] Fix compile warnings for gcc 8Anatoly Serdtcev
2018-12-24[geometry] A simplification of FromInt64ZOrder.Maxim Pimenov
2018-12-21[geometry] Clarified the z-order interpretation in CellId.Maxim Pimenov
2018-11-30[routing] Speed Cameras review fixesMikhail Gorbushin
2018-11-30[base] Renamed CHECK_SWITCH to UNREACHABLE.Maxim Pimenov
2018-11-26[coding] Removed the CellId epsilon.Maxim Pimenov
In was used as eps in meters in some cases and eps in mercator in others. Its value was hard to justify and so were its use cases. We're better off with less epsilons for now. Also renamed Metres to Meters in the mercator code.
2018-11-23[coding] Moved functions that encode points to one common file.Maxim Pimenov
2018-11-19[notifications] review fixesArsentiy Milchakov
2018-09-18[base] Replaced the namespace my with base.Maxim Pimenov
2018-09-14[base] Unified stl_add and stl_helpers.Maxim Pimenov
2018-09-11City roads section and tests.Vladimir Byko-Ianko
2018-08-01[geometry] Fix comments.tatiana-yan
2018-08-01Review fixes.Maxim Pimenov
2018-08-01[geometry] ForEachCorner and ForEachSide helpers in Rect.Maxim Pimenov
2018-08-01[geometry] Functors instead of factories in simplification.hpp.Maxim Pimenov
2018-08-01[geometry] Refactoring of code that works with parametrized segments.Maxim Pimenov
Specialized classes DistanceToLineSquare and ProjectionToSection are replaced with a unified ParametrizedSegment class.
2018-07-25Review fixes.Maxim Pimenov
2018-07-25[geometry] AnyRect refactoring.Maxim Pimenov
2018-07-25Review fixes.Maxim Pimenov
2018-07-25[geometry] Coding style fixes.Maxim Pimenov
2018-07-23[geometry] Renamed SquareLength to SquaredLength.Maxim Pimenov
2018-06-25Review fixesMaksim Andrianov
2018-06-25After mergeMaksim Andrianov
2018-06-25Fixed warn: comparison between signed and unsigned integer expressionsMaksim Andrianov
2018-06-15[cmake] Add precompiled headers supportgreshilov
2018-05-08[geometry] Made the constructor of Point<T> from Point<U> explicit.Maxim Pimenov
Sometimes we want a non-trivial transformation when converting from one representation of a point to another. An example is PointDToPointU which uses the fact that its argument is usually a point from the Mercator plane. The wrong usage is easier to catch when implicit conversion between different point types is prohibited. An example of wrong usage that is prevented by this commit: // A function defined in another file. m2::PointU GetPoint() { m2::PointD pt; [...] return PointDToPointU(p2, kDefaultBits); } // Here we have forgotten that the result of GetPoint() is already converted. m2::PointU ptu = PointDToPointU(GetPoint(), kDefaultBits);
2018-04-17[geometry] Faster CellId::XY and CellId::FromXY.Maxim Pimenov
2018-04-11[search] Prefer prevEmit results in NearbyPointsSweepertatiana-kondakova
2018-04-10[coding] [geometry] Deprecated PointToInt.Maxim Pimenov
For some reason we have been using bitwise merge to store a pair of 32-bit unsigned integer coordinates. Since the width of the coordinates is fixed and storage in general has nothing to do with the Z-order curve where bitwise merge is appropriate, this commit marks this method of storage as obsolete (and effectively deprecated). The functions to convert between PointD and PointU are still serviceable. Their usage is slightly refactored.
2018-03-07Getting rid of my::sq, math::sqrtatiana-kondakova
2018-03-06Using _t suffix instead of ::type in whole project + using std:: somewhere.VladiMihaylenko
2017-12-28[qmake] Goodbye QMake!greshilov
+3party dirs +Rebased
2017-11-30Review fixes.Vladimir Byko-Ianko
2017-11-14Transit route processing, generation transit data for rendering.Daria Volvenkova
2017-10-26Added markers rendering for transit routing (#7402)Roman Kuznetsov
Added markers for transit routing
2017-10-17Review fixesr.kuznetsov
2017-10-17Refactored route renderingr.kuznetsov
2017-10-13Review fixes.beta-1064Yuri Gorshenin
2017-10-13[search] CitiesBoundaryTable is exposed to TestMwmBuilder.Yuri Gorshenin
2017-10-10[generator] Cities boundaries builder.Yuri Gorshenin
2017-09-28Review fixes.Yuri Gorshenin
2017-09-28[indexer] Simplified boundaries encoding/decoding.Yuri Gorshenin
2017-09-22Review fixes.Yuri Gorshenin