| 310 | */ |
| 311 | |
| 312 | double msDistancePointToPoint(pointObj *a, pointObj *b) |
| 313 | { |
| 314 | double d; |
| 315 | |
| 316 | d = sqrt(msSquareDistancePointToPoint(a, b)); |
| 317 | |
| 318 | return(d); |
| 319 | } |
| 320 | |
| 321 | /* |
| 322 | ** Quickly compute the square of the distance; avoids expensive sqrt() call on each invocation |
no test coverage detected