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