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