水平翻转视图 - 如何?
最近我发现我的所有场景对象都是左手坐标,但 Java 3D 使用右手坐标。有一个解决方案:翻转场景 Z 轴并恢复三角形缠绕顺序。但这将是一个可怕的混乱。看来,如果我能以某种方式水平翻转视图,它就能完成所需的工作。我怎样才能实现这个目标?在某处应用 Transform3D、某种离屏渲染还是……?
Recently I've found that all of my scene objects are in left-handed coordinates, but Java 3D uses right-hand coordinates. There is a solution: flipping the scene Z-axis and reverting the triangles winding order. But this will be a horrible mess. It seems that if I can somehow flip the view horizontally it will do the job needed. How can I achieve this? Applying Transform3D somewhere, some kind of offscreen rendering or...?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试通过在 Z 轴上旋转 180 度来更改视图。这是假设您使用 SimpleUniverse。
You can try changing the view by rotating it on the Z axis by 180 degrees. This is assuming your using a SimpleUniverse.