|
|
|
@ -182,4 +182,10 @@ public class NewPolars {
|
|
|
|
public static double modulateAngle(double angle){
|
|
|
|
public static double modulateAngle(double angle){
|
|
|
|
return (angle % 360 + 360) % 360;
|
|
|
|
return (angle % 360 + 360) % 360;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@SuppressWarnings("unused")
|
|
|
|
|
|
|
|
private Map<Double, TreeMap<Double, Double>> getPolars(){
|
|
|
|
|
|
|
|
//this function is just for testing so therefore it is private
|
|
|
|
|
|
|
|
return polars;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|