自顶向下 3D 教程
嗯,我正在寻找一个关于用 C++ 编程 Topdown 3D 的好指南。我在哪里可以找到一个好的?
谢谢。
Well, i'm looking for a good guide to program Topdown 3D in C++. Where i can find a good one?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
自上而下与任何其他 3D 节目没有任何不同 - 除了观看者的位置不同。
您可以通过检查 gluLookAt() 获得有关您想要执行的操作的更多信息。
您的“向上”将是 X 或 Z,具体取决于您想要执行的操作以及是否仍想对其他所有操作使用右手坐标。
Topdown isn't any different than any other 3D programming - except for the position of the viewer.
You can get some more information about what you want to do by checking out gluLookAt()
Your "up" would be X or Z depending on what you wanted to do and if you still wanted to use right-handed coordinates for everything else.
在 nehe 教程站点查看 Isometric。
Check out Isometric at the nehe tutorials site.