| 146 | } |
| 147 | |
| 148 | void PrepParams::DebugPrint() const noexcept |
| 149 | { |
| 150 | debugPrintf("pp: td=%.3g" |
| 151 | " ad=%.3g dsd=%.3g a=%.3g d=%.3g ac=%" PRIu32 " sc=%" PRIu32 " dc=%" PRIu32 |
| 152 | "\n", |
| 153 | (double)totalDistance, |
| 154 | (double)accelDistance, (double)decelStartDistance, |
| 155 | (double)acceleration, (double)deceleration, |
| 156 | accelClocks, steadyClocks, decelClocks |
| 157 | ); |
| 158 | } |
| 159 | |
| 160 | DDA::DDA(DDA *_ecv_null n) noexcept : next(n), prev(nullptr) |
| 161 | { |
no test coverage detected