Skip to content
Prev 336222 / 398502 Next

two active RGL device / linked devices

Dear list!

My question is, if there is an option in RGL, that two devices can be active. It means, when eg. points in first device is rotated also points in second devies is rotated. For example:

library(rgl)
x <- rnorm(1000)
y <- rnorm(1000)
z <- rnorm(1000)
open3d()
points3d(x,y,z)
open3d()
points3d(x,y,z)

rgl.set(c(1,2), silent=TRUE) #does not work

Thanks for suggestions.

OV