Java atan2 atan2(final double y, final double x)

Here you can find the source of atan2(final double y, final double x)

Description

atan

License

Open Source License

Declaration

public static final double atan2(final double y, final double x) 

Method Source Code

//package com.java2s;

public class Main {
    public static final double atan2(final double y, final double x) {
        return StrictMath.atan2(y, x);
    }/*w w w .  ja va2s.  c  o  m*/
}

Related

  1. atan2(double y, double x)
  2. atan2(double y, double x)
  3. atan2(double y, double x)
  4. atan2(double y, double x)
  5. atan2(double[] arr1, double[] arr2)
  6. atan2(float y, float x)
  7. atan2(Integer y, Integer x)
  8. atan2Scalar(double val, double[] arr)
  9. squareAtan2(float y, float x)