Android - 设置矩阵旋转后的位图碰撞检测
如何在由矩阵旋转的位图上创建碰撞检测代码?
canvas.drawBitmap(mAnimation, mainMatrix, null);
mainMatrix 是从 PathMeasure 派生的,所以我不知道旋转 位图围绕 x=0,y=0 旋转,因此围绕中心的圆将不起作用(或至少太大),
谢谢
How do I create code for collision detection on a bitmap rotated by a matrix?
canvas.drawBitmap(mAnimation, mainMatrix, null);
mainMatrix is derived from a PathMeasure so i do not know the rotation
The bitmap is rotated around x=0,y=0 and thus a circle around the centre will not work (or at least be too big)
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Matrix 有一个映射点和矩形的方法,您可以使用它来知道转换的结果。
Matrix has a method to map points and rectangles, you could use that to know the result of the transformation.