如何从夹具中取回b2PolygonShape? [BOX2d]
你好 在 BOX2d 中,我有一个固定装置,我通过以下方式知道它是一个多边形:
b2Shape *sh = fixture->GetShape();
NSLog(@"Type %d", sh->GetType());
//this returns 1, means its a polygon.
现在如何获取顶点以便确切地知道它的形状,即矩形、正方形等。
Hi
In BOX2d I have a fixture I know its a polygon through:
b2Shape *sh = fixture->GetShape();
NSLog(@"Type %d", sh->GetType());
//this returns 1, means its a polygon.
Now how to get the vertices in order to know exactly what shape it has i.e. rectangle square etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您知道它是多边形,请将其转换为 b2PolygonShape 并调用 GetVertices()。
文档: http://www.linuxuser.at/elements/doc/box2d /classb2_polygon_shape.htm#0e8a0b73c98b3e57f26772d14f252e8b
If you know it's a polygon, cast it to a b2PolygonShape and call GetVertices().
Docs: http://www.linuxuser.at/elements/doc/box2d/classb2_polygon_shape.htm#0e8a0b73c98b3e57f26772d14f252e8b