渐近线无法在 3D 图形中标记

渐近线无法在 3D 图形中标记

我有更新的 Asymptote(版本 2.86)和 Ghostscript(版本 10.02),但无法让 Asymptote 标记三维图形。例如,

settings.outformat="pdf";
import three;
size(4cm,0);
currentprojection=orthographic(5,4,2,center=true);
draw(unitbox,red);
dot((7,2,0), red);
label("(1,0,0)",(1,0,0),S);

给了我一个错误

读取长度为 0 且越界索引为 0 的数组

但是,如果我注释掉最后一行,它就可以正常运行。我使用的是 Windows 10.0.19045。可能是我的 Ghostscript 应用程序的设置不正确?

相关内容