<div dir="ltr"><div><div>Hello,<br><br></div>I'm trying to manually set the view matrix, and I'm doing so in the following way<br><br><br><br>vtkSmartPointer<vtkMatrix4x4> trans_mat = vtkSmartPointer<vtkMatrix4x4>::New();<br><br>        vtkSmartPointer<vtkTransform> trans = vtkSmartPointer<vtkTransform>::New();<br><br>        trans_mat->Identity();<br>        trans_mat->SetElement(2, 3, -40);<br><br>        trans->SetMatrix(trans_mat);<br><br>        camera->SetUserViewTransform(trans);<br><br><br></div>This renders the expected results, but after that, if I try to move the scene with my mouse, everything disappears and I can't track my model anymore. What could be happening?<br></div>