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