| 111 | return 2; |
| 112 | } |
| 113 | void LuxCoreApp::UpdateMoveStep() { |
| 114 | float pMin[3], pMax[3]; |
| 115 | config->GetScene().GetBBox(pMin, pMax); |
| 116 | const int maxExtent = MaximumExtent(pMin, pMax); |
| 117 | |
| 118 | const float worldSize = Max(pMax[maxExtent] - pMin[maxExtent], .001f); |
| 119 | optMoveStep = optMoveScale * worldSize / 50.f; |
| 120 | } |
| 121 | |
| 122 | void LuxCoreApp::IncScreenRefreshInterval() { |
| 123 | const unsigned int screenRefreshInterval = config->ToProperties().Get("screen.refresh.interval").Get<unsigned int>(); |
nothing calls this directly
no test coverage detected