是否有用于编写 ply 文件的 Java 库?
我正在寻找一个 Java 库来编写层文件。如果没有,我想研究一下写一个。
I'm looking for a Java library to write out ply files. If there isn't one, I'd like to look into writing one.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您只想编写层文件,那么我建议您编写自己的代码。
格式非常简单。所以你自己写起来可能会更快。
首先介绍一下:
http://local.wasp.uwa .edu.au/~pbourke/dataformats/ply/
If you only want to write ply files then I would suggest to write your own code.
the format is quite simple. So you'll probably be faster writing it yourself.
Here is an introduction to start with:
http://local.wasp.uwa.edu.au/~pbourke/dataformats/ply/
以下是 PLY 编写器代码片段的简化版本,您可以对其进行更改以满足您的需要。
following is a simplified version of a PLY writer code snippet which you may change it to suit your needs.