| 462 | } |
| 463 | |
| 464 | double msDistancePointToShape(pointObj *point, shapeObj *shape) |
| 465 | { |
| 466 | double d; |
| 467 | |
| 468 | d = msSquareDistancePointToShape(point, shape); |
| 469 | |
| 470 | return(sqrt(d)); |
| 471 | } |
| 472 | |
| 473 | /* |
| 474 | ** As msDistancePointToShape; avoid expensive sqrt calls |
no test coverage detected