(double value, double min, double max)
| 391 | } |
| 392 | |
| 393 | public Double clip(double value, double min, double max) { |
| 394 | return Math.min(max, Math.max(min, value)); |
| 395 | } |
| 396 | |
| 397 | @Override |
| 398 | public Window setResolution(WindowResolution resolution) { |
no test coverage detected