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:
authorVladimir Byko-Ianko <v.bykoianko@corp.mail.ru>2017-08-11 15:30:56 +0300
committerYuri Gorshenin <mipt.vi002@gmail.com>2017-08-11 15:32:59 +0300
commit3a6a510ac076f96a3f61402cb6a07e5e9d6ef26b (patch)
treefadd4863e85bddc5e2e4e22c4635d67cf4a4fa67 /routing/checkpoint_predictor.hpp
parent175246bf33ec0eb2778cf29ec2253d0888d321cc (diff)
Review fixes.
Diffstat (limited to 'routing/checkpoint_predictor.hpp')
-rw-r--r--routing/checkpoint_predictor.hpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/routing/checkpoint_predictor.hpp b/routing/checkpoint_predictor.hpp
index f175008666..66e89e0a1a 100644
--- a/routing/checkpoint_predictor.hpp
+++ b/routing/checkpoint_predictor.hpp
@@ -23,22 +23,22 @@ public:
{
}
- /// \brief finds the best position for |point| between |intermediatePoints| to minimize the length
- /// of broken line of |intermediatePoints| with inserted |point| between them.
- /// \param intermediatePoints is a sequence of points on the map.
+ /// \returns difference between distance |from|->|between| + |between|->|to| and distance |from|->|to|.
+ static double CalculateDeltaMeters(m2::PointD const & from, m2::PointD const & to, m2::PointD const & between);
+
+ /// \brief finds the best position for |point| between |points| to minimize the length
+ /// of broken line of |m_start|, |points| and |m_finish| with inserted |point| between them.
+ /// \param points is a sequence of points on the map.
/// \param point is a point to be inserted between |points|.
/// \returns zero based index of a line segment between two points at |points|.
- size_t PredictPosition(std::vector<m2::PointD> const & intermediatePoints, m2::PointD const & point) const;
+ size_t PredictPosition(std::vector<m2::PointD> const & points, m2::PointD const & point) const;
private:
/// \returns checkpoint by its |index|.
- /// \note checkpoints is a sequence of points: |m_start|, |intermediatePoints|, |m_finish|.
- m2::PointD const & GetCheckpoint(std::vector<m2::PointD> const & intermediatePoints, size_t index) const;
+ /// \note checkpoints is a sequence of points: |m_start|, |points|, |m_finish|.
+ m2::PointD const & GetCheckpoint(std::vector<m2::PointD> const & points, size_t index) const;
m2::PointD const m_start;
m2::PointD const m_finish;
};
-
-/// \returns difference between distance |from|->|between| + |between|->|to| and distance |from|->|to|.
-double CalculateDeltaMeters(m2::PointD const & from, m2::PointD const & to, m2::PointD const & between);
} // namespace routing