(float a, float b)
| 132 | } |
| 133 | |
| 134 | public static float mag(float a, float b) |
| 135 | { |
| 136 | return (float) Math.hypot(a, b); |
| 137 | } |
| 138 | |
| 139 | public static float mag(float a, float b, float c) |
| 140 | { |
nothing calls this directly
no outgoing calls
no test coverage detected