(float x1, float y1, float x2, float y2)
| 4977 | |
| 4978 | |
| 4979 | static public final float dist(float x1, float y1, float x2, float y2) { |
| 4980 | return sqrt(sq(x2-x1) + sq(y2-y1)); |
| 4981 | } |
| 4982 | |
| 4983 | /** |
| 4984 | * ( begin auto-generated from dist.xml ) |
no test coverage detected