无法更改 rgl 图中的文本大小

发布于 2025-01-04 14:46:21 字数 382 浏览 1 评论 0原文

我在更改使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

︶ ̄淡然 2025-01-11 14:46:21

诡异的。它适用于 Ubuntu 10.04 (rgl 0.92.829) [这是我的代码,我认为]。您能告诉我们您的 rgl 版本吗? “绘图”是指在屏幕上渲染图片,还是生成 PostScript 输出?此问题已在最新 (0.92.829) 版本中修复:

> news(grepl("text",Text),package="rgl")
Changes in version 0.92.829:

    o   rgl.postscript() now adjusts the size of text following the cex setting.
       The font and family settings are still ignored.

    o   Transparency in material textures was not always rendered properly.

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:

> news(grepl("text",Text),package="rgl")
Changes in version 0.92.829:

    o   rgl.postscript() now adjusts the size of text following the cex setting.
       The font and family settings are still ignored.

    o   Transparency in material textures was not always rendered properly.
少女情怀诗 2025-01-11 14:46:21
?text3d

没有 cex 参数。你应该使用“规模”。

?text3d

There is no cex argument. You should be using "scale".

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文