| 15 | from typing import NamedTuple |
| 16 | |
| 17 | class BasicPointCloud(NamedTuple): |
| 18 | points : np.array |
| 19 | colors : np.array |
| 20 | normals : np.array |
| 21 | |
| 22 | def geom_transform_points(points, transf_matrix): |
| 23 | P, _ = points.shape |
no outgoing calls
no test coverage detected