| 12 | static const float g_z_near= 1.0f / 12.0f; // Must be greater, then z_near in software rasterizer. |
| 13 | |
| 14 | MovementController::MovementController( |
| 15 | Settings& settings, |
| 16 | const m_Vec3& angle, |
| 17 | float aspect ) |
| 18 | : settings_( settings ) |
| 19 | , angle_(angle), aspect_(aspect) |
| 20 | , speed_(0.0f) |
| 21 | , start_tick_( Time::CurrentTime() ) |
| 22 | , prev_calc_tick_( Time::CurrentTime() ) |
| 23 | { |
| 24 | UpdateParams(); |
| 25 | } |
| 26 | |
| 27 | MovementController::~MovementController() |
| 28 | {} |
nothing calls this directly
no outgoing calls
no test coverage detected