12345678910111213141516171819202122 |
-
-
-
- public class NormalizeAngle {
-
- public Integer normalizeValueUsingModulo(Integer angle){
- int norm = angle % 360;
-
- return norm;
- }
-
- public Integer normalizeValueUsingFloorMod(Integer integer){
- int norm = Math.floorMod(integer, 360);
-
- return norm;
- }
-
- public static void main(String[] args){
-
- }
- }
|