(self, v, is_vec=False)
| 221 | self.nfilledvox = nfilledvox |
| 222 | |
| 223 | def world2local(self, v, is_vec=False): |
| 224 | mat_world2local = torch.inverse(self.trans_mat) |
| 225 | return trans_vec_homo(mat_world2local, v, is_vec) |
| 226 | |
| 227 | def _truncate_voxel(self): |
| 228 | gnd_level = self.heightmap.min() |
no test coverage detected