This very simple plot gets stuck when dragging, rotating, etc. It's not so slow, but the extension is changing, so itβs very difficult to keep track of the data. This is because of axis labels that move during interaction. But why is it also if I set the axis = FALSE? He's still jumping ... Any ideas?
library(rgl) # has glitches during rotation, etc. xyz = rbind( c(696640.9, 211180.6, 1125.691), c(696640.9, 211180.5, 1125.696), c(696640.9, 211180.1, 1125.725), c(696641.1, 211179.8, 1125.813) ) plot3d(xyz, type="p", size=10) # runs smoothly xyz = rbind( c(6, 2, 1), c(9, 5, 6), c(4, 1, 5), c(1, 8, 3) ) plot3d(xyz, type="p", size=10)
How can I fix this error? Thank you very much.
Also, due to the jump, the location of the data itself seems to be corrupted. For example, the green line touches the red line in half. But this does not correspond to all viewing angles. 
EDIT
The suggested answer using scale() fixes the problem for plot3d() , but doesn't solve the problem for me. I am adding more data to the plot with points3d() , segments3d() and abcline3d() , which then do not fit well. Even if I use scale() also for the data added by these functions.