| 282 | } |
| 283 | |
| 284 | uint64_t LasHeader::pointCountByReturn(std::size_t index) const |
| 285 | { |
| 286 | return versionMinor() == 4 ? d->h.ePointsByReturn[index] : d->h.legacyPointsByReturn[index]; |
| 287 | } |
| 288 | |
| 289 | void LasHeader::setPointCountByReturn(std::size_t index, uint64_t count) |
| 290 | { |
nothing calls this directly
no test coverage detected