| 1286 | } |
| 1287 | |
| 1288 | int shapefileObj_getPoint(shapefileObj *self, int i, pointObj *point) { |
| 1289 | if(i<0 || i>=self->numshapes) |
| 1290 | return -1; |
| 1291 | |
| 1292 | return msSHPReadPoint(self->hSHP, i, point); |
| 1293 | } |
| 1294 | |
| 1295 | int shapefileObj_getTransformed(shapefileObj *self, mapObj *map, |
| 1296 | int i, shapeObj *shape) { |
no test coverage detected