如何绘制 Java 3D 切片形状或切片
我想在 JAVA 3D 中对球体、圆锥体或任何其他形状进行切片。
IE。从中心或任何其他侧面切割它
I want to slice a sphere or cone or any other shape in JAVA 3D.
ie. to cut it from center or from any other side
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看此类源代码coneBody方法一个>。将其复制出来(在文件顶部保留许可证..)并修改循环,使其比正常情况更早停止。这会产生一个间隙。
像这样使用它:
这就是使用 GeometryArray 的方式: http://www.java-tips.org/other-api-tips/java3d/how-to-use-geometryarray-for-by-reference.html (无论如何,类似的事情)
Have a look at the
coneBody
method in this class source code. Copy it out (preserving license at the top of the file..) and modify the loop so that it stops earlier than normal. This will crease a gap.Use it like so:
This is how you use a GeometryArray: http://www.java-tips.org/other-api-tips/java3d/how-to-use-geometryarray-for-by-reference.html (something like that, anyway)