Papervision 3D:如何强制 collada 文件的尺寸
我正在处理 Collada 文件,并且需要它们具有一定的大小。在 pv3d 中实例化它们时,您可以设置文件名、材质和比例。比例的工作方式类似于百分比,一旦进入 Flash,就无法获取 DAE 的宽度、高度或深度。我希望能够指定 3D 空间中 DAE 相对于其他 pv3d 原生几何体的大小。
I'm working with Collada files and I need them to be a certain size. When instantiating them in pv3d you set the filename, materials, and scale. Scale works like a percentage, and there's no way to get the width, height, or depth of the DAE once in flash. I want to be able to specify the size of DAE in 3D space relative to other pv3d native geometry.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用轴对齐边界框 (AABB) 来计算。
在完整的处理程序中,访问包含几何图形的对象的aabb。
根据 DAE 对象的嵌套方式,您可能需要沿着层次结构向下移动
稍微了解一下实际包含几何图形的对象,如 .geometry
对于空容器,保存 aabb 的属性为 null。
例如
HTH,
乔治
You can try to calculate that using the Axis Aligned Bounding Box (AABB).
In the complete handler, access the aabb of the object containing geometry.
Based on how nested your DAE objects are, you might need to go down the hierarchy
a bit to get to the objects that actually contain geometry, as the .geometry
property, which holds aabb is null for empty container.
e.g.
HTH,
George