| 241 | } |
| 242 | |
| 243 | void WaveSimulation2D_Real::setf(fl::size x, fl::size y, float value) { |
| 244 | i16 v = wave_detail::float_to_fixed(value); |
| 245 | return seti16(x, y, v); |
| 246 | } |
| 247 | |
| 248 | void WaveSimulation2D_Real::seti16(fl::size x, fl::size y, i16 value) { |
| 249 | if (x >= width || y >= height) { |
nothing calls this directly
no test coverage detected