在android 2d图形中旋转矩形?
我想在android中旋转一个矩形(不仅绘制旋转的矩形而且获取新的旋转值),我尝试了
canvas.rotate
但它没有反映矩形上的新值它只是画了一个旋转记录
这对我没有帮助,因为我在碰撞检测中使用了矩形
有没有一种方法可以旋转矩形的模型,而不仅仅是绘制旋转的模型?
谢谢
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我同意 grWEn,尝试使用 opengl-es。你可以阅读这个博客,它对我很有帮助。
这里:http://blog.jayway.com/2010/01/01/opengl-es-tutorial-for-android-%E2%80%93-part-iii-%E2%80%93-转换/
i agree with grWEn, try using opengl-es. you can read this blog, it really helped me.
Here: http://blog.jayway.com/2010/01/01/opengl-es-tutorial-for-android-%E2%80%93-part-iii-%E2%80%93-transformations/
openGL ES 是一个非常好的 Android 图形库。使用 glRotateF 旋转形状非常容易。
您可以在网上找到一些非常有用的 openGL ES 教程。这种东西在基础教程中有。
openGL ES is a very good library to Android graphics. Rotate a shape is very easy with glRotateF.
You can find a couple of very useful openGL ES tutorial on the web. This kind of stuff is in basic tutorial.