forked from organicmaps/organicmaps
Review fixes.
This commit is contained in:
parent
9637c235ee
commit
fb8b37ebe3
2 changed files with 5 additions and 4 deletions
|
@ -136,10 +136,6 @@ Iter FollowedPolyline::GetClosestProjectionInInterval(m2::RectD const & posRect,
|
|||
return res;
|
||||
}
|
||||
|
||||
/// \returns iterator to the best projection of center of |posRect| to the |m_poly|.
|
||||
/// If there's a good projection of center of |posRect| to two closest segments of |m_poly|
|
||||
/// after |m_current| the iterator corresponding of the projection returns.
|
||||
/// Otherwise returned a projection to closest point of route.
|
||||
template <class DistanceFn>
|
||||
Iter FollowedPolyline::GetBestProjection(m2::RectD const & posRect,
|
||||
DistanceFn const & distFn) const
|
||||
|
|
|
@ -78,6 +78,11 @@ private:
|
|||
template <class DistanceFn>
|
||||
Iter GetClosestProjectionInInterval(m2::RectD const & posRect, DistanceFn const & distFn,
|
||||
size_t startIdx, size_t endIdx) const;
|
||||
|
||||
/// \returns iterator to the best projection of center of |posRect| to the |m_poly|.
|
||||
/// If there's a good projection of center of |posRect| to two closest segments of |m_poly|
|
||||
/// after |m_current| the iterator corresponding of the projection is returned.
|
||||
/// Otherwise returns a projection to closest point of route.
|
||||
template <class DistanceFn>
|
||||
Iter GetBestProjection(m2::RectD const & posRect, DistanceFn const & distFn) const;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue