Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在画布上有一个移动的位图图像,当我触摸屏幕的下部时,会绘制一条向上移动的小线。
如何测试这条移动线是否接触到移动图像?
碰撞示例:
你可以使用这个:Rectangle.intersects
boolean isCollision = Rectangle.intersects(rectangle_around_image, rectangle_around_line);
当您的线条和/或图像移动时,您需要调用该代码。但是由于您没有发布代码,因此很难为您提供更多帮助。