Disable/Reset orientation of the Vtp file

Hello everyone, I’m using vtk.js to render a vtp file in Reactjs app.

I’m trying to reset the orientation of the object but it’s not working at all I tried to set the orientation to 0 0 0 ( actor.setOrientation(0,0,0), actor.setPosition(0,0,0)) the problem is while I’m trying to reset the camera the size of the object it reset which is good but the orientation doesn’t.
I would like to know if there’s any approach that make rotation back to the intial render or disable it at all.

Thanks

I fix it using the fillowing code
renderer.getActiveCamera().setOrientationWXYZ(0, 1, 1, 0);
if that could help someone in the future