CalculatePointOnSurface -------------------------------------------------------------------------
| 39 | |
| 40 | // CalculatePointOnSurface ------------------------------------------------------------------------- |
| 41 | CalculatePointOnSurface::CalculatePointOnSurface(m2::RectD const & rect) |
| 42 | : m_rectCenter(rect.Center()) |
| 43 | , m_center(m_rectCenter) |
| 44 | , m_squareDistanceToApproximate(std::numeric_limits<double>::max()) |
| 45 | {} |
| 46 | |
| 47 | void CalculatePointOnSurface::operator()(PointD const & p1, PointD const & p2, PointD const & p3) |
| 48 | { |