| 907 | } |
| 908 | |
| 909 | double pointObj_distanceToPoint(pointObj *self, pointObj *point) { |
| 910 | return msDistancePointToPoint(self, point); |
| 911 | } |
| 912 | |
| 913 | double pointObj_distanceToLine(pointObj *self, pointObj *a, pointObj *b) { |
| 914 | return msDistancePointToSegment(self, a, b); |
no test coverage detected