TranslatePointCloud transform
Adding a new transform function in kaolin.Transform : translatePointCloud.
In dgcnn, author have used it as a preprocessing function: https://github.com/WangYueFt/dgcnn/blob/20fdb459ca5d10fe8aba1d296e66340f65990b85/pytorch/data.py#L50
The preprocessing function is
(pc + xyz1) * xyz2
The mulitplication operation on pointcloud can be performed through https://github.com/NVIDIAGameWorks/kaolin/blob/c3ec5484c326e83d6e1a9fdfd170b4c67343c68b/kaolin/transforms/transforms.py#L201 but the addition operation is missing. Adding translate as a transform function might be useful
Thanks for opening this issue! This would be a nice addition, and relatively simple to implement.