无法更改 rgl 图中的文本大小
我在更改使用 rgl 包生成的 3d 绘图的文本大小时遇到问题。一切工作正常,但我无法有效地更改 3d 对象的 cex 属性。我在 64 位 Ubuntu 10.04 LTS (2.6.32-37-generic) 下运行 R 2.14.1 (2011-12-22)。作为示例,请参阅以下代码(我在 Stack Overflow 上找到):
library(rgl)
set.seed(1001)
n <- 20
text3d(runif(n),runif(n),runif(n),LETTERS[1:n],cex=seq(0.5,5,length=n))
当我绘制字母时,它们的大小都相同。
非常感谢任何帮助!此致。
弗里德·席林格
I have a problem changing the text size of a 3d plot I generated with the package rgl. Everything works fine, but I can't effectively change the cex properties of an 3d object. I run R 2.14.1 (2011-12-22) under 64bit Ubuntu 10.04 LTS (2.6.32-37-generic). As an example see the following code (I found on Stack Overflow):
library(rgl)
set.seed(1001)
n <- 20
text3d(runif(n),runif(n),runif(n),LETTERS[1:n],cex=seq(0.5,5,length=n))
The letters have all the same size when I plot them.
Any help is highly appreciated! Best Regards.
Frieder Schillinger
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
诡异的。它适用于 Ubuntu 10.04 (rgl 0.92.829) [这是我的代码,我认为]。您能告诉我们您的
rgl
版本吗? “绘图”是指在屏幕上渲染图片,还是生成 PostScript 输出?此问题已在最新 (0.92.829) 版本中修复:Weird. It works for me on Ubuntu 10.04 (rgl 0.92.829) [this is my code, I think]. Can you tell us your
rgl
version? By "plot" do you mean rendering the picture on the screen, or producing PostScript output? This was fixed in the most recent (0.92.829) version:没有 cex 参数。你应该使用“规模”。
There is no cex argument. You should be using "scale".