1

我有这个 povray 代码:

#include "colors.inc"
camera{
  location <4, 4, -10>
  look_at 0
  angle 36
}

light_source{ <500, 500, -1000> White }

plane{ y, -1.5
  pigment{ checker Green White }
}

union{
  box{ -1, 1 pigment{ Blue } }
  sphere{ 0, 1.375 pigment{ Red } }
  sphere{<0,1,0>,1.35  pigment{ Blue } }
  cone{<0,0,0>,0.45,<0,1.2,0>,0 pigment{ Blue } }
}

povray +Imerge.pov

我想将 .stl 文件添加到union. 我怎么能那样做?

请帮我。

4

1 回答 1

1

POV-Ray 本身不支持 STL 文件,您必须使用转换器才能获得所需的结果。

查看 stl2pov ( https://github.com/timschmidt/stl2pov ),或http://www.povray.org/resources/links/3D_Programs/Conversion_Utilities/官方列表中的任何其他工具。

于 2019-03-15T09:50:58.387 回答