SlimDX 中的 2D 三角形
给定三角形顶点以像素坐标给出,如何使用 SlimDX 的 Direct2D 接口绘制三角形?
How to draw a triangle using SlimDX's Direct2D interface given triangle vertices are given in pixel coordinates?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我们最近刚刚在我们的存储库中添加了一个涵盖该主题的示例。相关源文件位于此处。
We just recently added a sample covering this topic to our repository. The relevant source file is here.
您想要使用“变换后”坐标绘制图元。
转换后意味着它们已经在屏幕 X、Y 中,因此 DirectX 不会投影它们。
You want to draw primitive with "Transformed" coordinates.
Transformed meams they are already in Screen X,Y so DirectX wont project them.