(self, data)
| 396 | self.x = x |
| 397 | |
| 398 | def _process(self, data): |
| 399 | # Nothing to do if less than 1 step required |
| 400 | if self.steps <= 0: |
| 401 | return data |
| 402 | |
| 403 | # Recursively split the data |
| 404 | for p in self.binary_tree_path: |
| 405 | data = self.split_by_main_xy_direction(data, left=not p, right=p) |
| 406 | |
| 407 | return data |
| 408 | |
| 409 | @property |
| 410 | def binary_tree_path(self): |
nothing calls this directly
no test coverage detected