| 1484 | } |
| 1485 | |
| 1486 | BOOL LASreaderLAS::seek(const I64 p_index) |
| 1487 | { |
| 1488 | if (reader) |
| 1489 | { |
| 1490 | if (p_index < npoints) |
| 1491 | { |
| 1492 | if (reader->seek((U32)p_idx, (U32)p_index)) |
| 1493 | { |
| 1494 | p_idx = p_index; |
| 1495 | return TRUE; |
| 1496 | } |
| 1497 | } |
| 1498 | } |
| 1499 | return FALSE; |
| 1500 | } |
| 1501 | |
| 1502 | BOOL LASreaderLAS::read_point_default() |
| 1503 | { |
no outgoing calls
no test coverage detected