Hi, i was wondering if there is a way to annotate rgl plot, after searching i haven't found anything suitable. I saw function text3d but was thinking more about text on the margin, so not interactive. Thanks -- View this message in context: http://www.nabble.com/Annotation-rgl-plot-tp22930428p22930428.html Sent from the R help mailing list archive at Nabble.com.
On 4/7/2009 10:31 AM, Yuri Volchik wrote:> Hi, > > i was wondering if there is a way to annotate rgl plot, after searching i > haven't found anything suitable. I saw function text3d but was thinking more > about text on the margin, so not interactive.rgl currently only sets up one coordinate system, so whatever text you put on a plot will move when you move the plot. Over the summer I'm hoping to add a number of features that would allow what you want, but they aren't there yet. If you don't mind having the text move, you can write it outside of the data area by setting par3d(ignoreExtent=TRUE); this will not count in bounding box calculations. Duncan Murdoch
Thanks for a great package Duncan, one of the most amazing things i saw for R platform. In the meanwhile i can do with you suggestion: par3d(ignoreExtent=TRUE); -- View this message in context: http://www.nabble.com/Annotation-rgl-plot-tp22930428p22945459.html Sent from the R help mailing list archive at Nabble.com.