NormalizeAngle.java 326B

1234567891011121314151617181920
  1. public class NormalizeAngle {
  2. public Integer normalizeValueUsingModulo(Integer angle){
  3. return angle%360;
  4. }
  5. public Integer normalizeValueUsingFloorMod(Integer integer){
  6. int x = Math.floorMod(integer, 360);
  7. return x;
  8. }
  9. public static void main(String[] args){
  10. }
  11. }