I have self.picker = vtk.vtkPointPicker() to select the point in the point cloud. And I would like to be able by double-click on some point, make this point center of the rotation WITHOUT shifting the camera so that the selected point is in the center of the viewport. I have the following function:
Of course, that one indeed allows to use the selected point as the rotation BUT at the same time all view is moved so that the new focal point is in the center of the view.
Is there way to avoid this or it is somehow against some basic VTK design?
I have seem this solution → c++ - How to rotate a vtk scene around a specific point? - Stack Overflow
But it is 8 years old and, well, honestly looks a bit of an overkill for a relative simple(?) feature.
Is this indeed the way I should I use, and just translate it to tools I am using (Python & pyside6)? Or there is some way to do it in the VTK itself? Thanks.
It seems overkill but to rotate an object about a random position, you need, first to translate the object to the origin, apply the rotation and then translate it back to the former position. This is how computational geometry works.
Mathematically, indeed. But I was hoping for a more built-in support for this functionality since it is pretty common in multiple 3D viewers (CloudCompare, for example). But if there is nothing available in VTK itself, I guess the only way is to implement this workaround indeed.