Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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());
    }   
share|improve this question
How wide is top supposed to be? – George Reith Oct 13 '12 at 19:30
top's width is 10,height is 10 too. – Zapdos Oct 13 '12 at 19:39
What's the question? – Pradeep Pati Oct 13 '12 at 19:49
I wright it above :) "When "top" collides with "raket" on the right pixels of "raket" it is working good. But when they collide on the left pixels of "raket" , "top" is passing through inside of it." – Zapdos Oct 13 '12 at 19:52
Does top.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 what top.setX() and top.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
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.