如何使用 C++使用 3d 点数组绘制多边形
我想获得使用 C++ 的帮助,以便使用 3d 点数组绘制多边形。我已经对数组进行了排序,以便我的点按顺序排列(即一个点跟随另一个点)。如有任何帮助,我们将提前表示感谢。谢谢
I would like to get help in using C++ in order to draw a polygon using an array of 3d points. I already sort my array so that my points are arranged in order(i.e one points follow the other). Any help will be appreciated in advance. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除非我误读了这个问题,否则您将需要一个 3D 渲染 API,例如 Direct3D 或 OpenGL。还有其他选择,但这两个是迄今为止最受欢迎的。
您必须注意 Direct3D 仅在 Windows 上可用,而大多数主要平台都支持 OpenGL。但 Direct3D 是 DirectX 的一部分,DirectX 是多媒体 API 的完整包,而 OpenGL 是严格的图形(除了用于音频的 OpenAL 之外)。
无论您选择哪一个,网上都有无数关于绘制基本多边形的教程,只需通过 Google 快速搜索即可找到。
Unless I am misreading the question, you will need a 3D-Rendering API such as Direct3D or OpenGL. There are other options, but those two are by far the most popular.
You do have to be aware that Direct3D is available only on Windows, while OpenGL is supported on most major platforms. But Direct3D is part of DirectX which is an entire package of multimedia APIs while OpenGL is strictly graphics (aside from OpenAL for audio).
Whichever you choose, there are countless tutorials online about drawing basic polygons that are just a quick Google search away.