Is there a way how to rotate by clicking and dragging just one of the 3D graphics inside Show?
For example rotating the cube without rotating the tetrahedron in this code:
Show[Graphics3D[{Opacity[0.5], Cube[]}, Boxed -> False],
Graphics3D[{Opacity[0.5], Tetrahedron[]}, Boxed -> False]]
I know how to do it by code, I just want to know whether there exist some parameter for Graphics3D that disables rotating by mouse, something like RotationDisable->True. And then one graphics would have RotationDisable->True and the other RotationDisable->False.
If there is no way how to do it for Show then what would be the easiest way to achieve rotating of cube by mouse while tetrahedron stays stationary?


ManipulateorDynamicModuleseems the only way right now. – cvgmt Nov 04 '20 at 09:47DynamicModulebut it is not as good as it would be with mouse dragging straight on the graphics itself. See my answer. – azerbajdzan Nov 04 '20 at 11:41