| 518 | } |
| 519 | |
| 520 | ScreenBase::Matrix3dT ScreenBase::GetModelView() const |
| 521 | { |
| 522 | return ScreenBase::Matrix3dT{ |
| 523 | m_GtoP(0, 0), m_GtoP(1, 0), 0, m_GtoP(2, 0), m_GtoP(0, 1), m_GtoP(1, 1), 0, m_GtoP(2, 1), 0, 0, 1, 0, 0, 0, 0, 1}; |
| 524 | } |
| 525 | |
| 526 | ScreenBase::Matrix3dT ScreenBase::GetModelView(m2::PointD const & pivot, double scalar) const |
| 527 | { |
no outgoing calls
no test coverage detected