我无法弄清楚如何在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 可以正常工作。