我无法弄清楚如何在Processing的python模式下将3D绘图渲染为PDF文件。这是一张图纸的例子:
size(400, 400, P3D)
noStroke()
background(0)
directionalLight(100, 100, 100, 100, 100, -100)
translate(width / 2, height / 2, 0)
sphere(100)
我在脚本的开头添加了add_library("pdf")
,并尝试了createGraphics
,但我无法将其渲染为3D图像。将2D图像绘制为PDF可以正常工作。