dmurdoch / rgl

rgl is a 3D visualization system based on OpenGL. It provides a medium to high level interface for use in R, currently modelled on classic R graphics, with extensions to allow for interaction.
https://dmurdoch.github.io/rgl/
GNU General Public License v2.0
85 stars 20 forks source link

Linestrip not drawn properly #234

Closed dmurdoch closed 2 years ago

dmurdoch commented 2 years ago

The following code draws properly in the rglwidget() display, but not in the internal display in one Linux system:

   library(rgl)

   testmat=matrix(1:15, ncol = 3)
   testmat[3,]=NA
   lines3d(testmat, alpha=.5)
   rglwidget()