java cartesian to polar code example
Example: java cartesian to polar
public static double[] pol(double x, double y) {
//return new double[]{Math.sqrt(x * x + y * y), Math.atan2(y, x)}; //red
return new double[]{Math.sqrt(x * x + y * y), (Math.atan2(y, x) * 180) / Math.PI}; //cart
}