I am currently doing simple 3D plots with rgl and persp3d(). I tried to use bbox3d() but I cannot make the stroke around the box (the 3 planes in the back/bottom) appearing (similarly to axes3d()):
The problem with axes3d() is that the bounding box/planes are not filled with a color (at least I do not know how to achieve that). Thank for your time!
Here is the code to produce the Actual version:
library("rgl")
x=c(0,1,2,3,4,5,6)
y=x
z=outer(x,y,function(x,y){x+y})
persp3d(x,y,z,col="grey")
bbox3d(lwd=5,box=T,color=c("grey","black"))

