| 1618 | } |
| 1619 | |
| 1620 | BOOL LASquadtree::tiling_setup(F32 min_x, F32 max_x, F32 min_y, F32 max_y, U32 levels) |
| 1621 | { |
| 1622 | this->min_x = min_x; |
| 1623 | this->max_x = max_x; |
| 1624 | this->min_y = min_y; |
| 1625 | this->max_y = max_y; |
| 1626 | this->levels = levels; |
| 1627 | this->sub_level = 0; |
| 1628 | this->sub_level_index = 0; |
| 1629 | return TRUE; |
| 1630 | } |
| 1631 | |
| 1632 | BOOL LASquadtree::subtiling_setup(F32 min_x, F32 max_x, F32 min_y, F32 max_y, U32 sub_level, U32 sub_level_index, U32 levels) |
| 1633 | { |
nothing calls this directly
no outgoing calls
no test coverage detected