Returns the angle in degrees between the specified line and a horizontal line.
(int x1, int y1, int x2, int y2)
| 1950 | |
| 1951 | /** Returns the angle in degrees between the specified line and a horizontal line. */ |
| 1952 | public double getAngle(int x1, int y1, int x2, int y2) { |
| 1953 | return getFloatAngle(x1, y1, x2, y2); |
| 1954 | } |
| 1955 | |
| 1956 | /** Returns the angle in degrees between the specified line and a horizontal line. */ |
| 1957 | public double getFloatAngle(double x1, double y1, double x2, double y2) { |
no test coverage detected