| 62 | } |
| 63 | |
| 64 | bool ConstrainedBox::IsPositiveRealNumber(double value) noexcept |
| 65 | { |
| 66 | return std::isfinite(value) && value > 0.0; |
| 67 | } |
| 68 | |
| 69 | void ConstrainedBox::ApplyMultiple(int32_t multiple, float &value) noexcept |
| 70 | { |
nothing calls this directly
no outgoing calls
no test coverage detected