not sure why I'm having issues w/ this formula.. at first I wanted my explode double tap feature to push particles away from the point of origin at varying amounts based on their distance to the touch point.. It didnt' look all that great. so Now what I want to do is keep my current implimentation, but push objects within z distance away till distance =z. so the object inside will make a perfect cirlce around the touchpoint.
this is my distance formula which gives the distance of each particle from touchpoint: double distance = Math.sqrt((Math.pow(b.x - x,2)+ Math.pow(b.y - x, 2)));
I have the screen height and width. So I add contraints that it the particle is out of bounds place back in bounds at the outmost location.
I was toying w/ something like this..
else if (distance <550)
{
Log.d("old","x = "+x+" b.x = "+b.x+" Distance = "+distance);
Log.d("old","y = "+y+" b.y = "+b.y+" Distance = "+distance);
b.x += (float) ((b.x -x));
b.y +=(float) ((b.y -y));
Log.d("new","b.x = "+b.x);
Log.d("new","b.y = "+b.y);
}
not working for particular touchpoints.. remember top left = (0,0) and bottom right = (1280,800). Should be simple equation.. but just not working out??