| 1649 | } |
| 1650 | |
| 1651 | LASquadtree::LASquadtree() |
| 1652 | { |
| 1653 | U32 l; |
| 1654 | levels = 0; |
| 1655 | cell_size = 0; |
| 1656 | min_x = 0; |
| 1657 | max_x = 0; |
| 1658 | min_y = 0; |
| 1659 | max_y = 0; |
| 1660 | cells_x = 0; |
| 1661 | cells_y = 0; |
| 1662 | sub_level = 0; |
| 1663 | sub_level_index = 0; |
| 1664 | level_offset[0] = 0; |
| 1665 | for (l = 0; l < 16; l++) |
| 1666 | { |
| 1667 | level_offset[l+1] = level_offset[l] + ((1<<l)*(1<<l)); |
| 1668 | } |
| 1669 | current_cells = 0; |
| 1670 | current_cell = 0; |
| 1671 | adaptive_alloc = 0; |
| 1672 | adaptive = 0; |
| 1673 | } |
| 1674 | |
| 1675 | LASquadtree::~LASquadtree() |
| 1676 | { |
nothing calls this directly
no outgoing calls
no test coverage detected