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