(double t)
| 732 | private static final double msPerMinute = (SecondsPerMinute * msPerSecond); |
| 733 | |
| 734 | private static double Day(double t) { |
| 735 | return Math.floor(t / msPerDay); |
| 736 | } |
| 737 | |
| 738 | private static double TimeWithinDay(double t) { |
| 739 | double result; |
no test coverage detected