I have looked for the other questions for this issue but non of them was alike with this.
I have two bitmaps.Trying to detect if they are collide but it is not working right.
When top collides with right half of raket , it is working good.
But when top collide with left half of raket , top is passing through inside of it.
It is not supposed to be like that.What is the mistake in my algorithm?
Here my algorithm:
public Rect getBoundsBall(){
return new Rect (top.getX(), top.getY(),top.getX()+10,top.getY()+10 );
}
public Rect getBoundsScratch(){
return new Rect (raket.getX(), raket.getY(),raket.getX()+240,raket.getY()+10);
}
Rect BallBounds = getBoundsBall();
Rect ScratchBounds = getBoundsScratch();
if( BallBounds.intersect(ScratchBounds) ){
top.setydirection(-1);
top.setX(top.getX());
top.setY(top.getY());
}
topsupposed to be? – George Reith Oct 13 '12 at 19:30top.setydirection(-1)reverse the direction, or set it to the negative y direction? I suspect you want to reverse the direction. Also, I'm not sure whattop.setX()andtop.setY()are doing, but you should be moving top to a point where there is no collision in addition to reversing the direction. – beaker Oct 13 '12 at 20:58