| 151 | } |
| 152 | |
| 153 | void ScreenBase::SetFromParams(m2::PointD const & org, double angle, double scale) |
| 154 | { |
| 155 | ASSERT_GREATER(scale, 0.0, ()); |
| 156 | m_Scale = scale; |
| 157 | m_Angle = ang::Angle<double>(angle); |
| 158 | m_Org = org; |
| 159 | UpdateDependentParameters(); |
| 160 | } |
| 161 | |
| 162 | void ScreenBase::MatchGandP(m2::PointD const & g, m2::PointD const & p) |
| 163 | { |
no outgoing calls
no test coverage detected