Hi there I made an application which has two balls.Red and Yellow. User has to drag RED BALL and drop it over the YELLOW BALL.it is in X-Y Plane.now i want to calculate what is the accuracy is the overlapping. I know that if the X-Y of target are equal to the X-Y of the Striker then it is 100 percent but how will you calculate it? as if you move the red ball further right value of X of striker gets bigger and percent will not be accurate?I have been using Percent Error formula but it is not accurate

   double percentErrorX =(CurrentX-targetX)*100/targetX;
            double percentErrorY = (CurrentY -targetY)*100/targetY;

enter image description here

link|improve this question

feedback

4 Answers

up vote 4 down vote accepted

I would think the most intuitive form of percentage calculation would come from computing the percentage of area of each circle that is overlapping.

What kind of granularity are you using? And what does your x-y coordinate represent, the center of each circle? If the x-y coordinate is the center, then you could use the distance formula:

d = sqrt[ (x1-x2)^2 + (y1-y2)^2 ]

Where the x-y coords of the target are x1, y1 and the x-y coords of the striker are x2, y2.

With this d, you can computer a percentage like so:

Percent = (d / radius)
link|improve this answer
I am getting the X-Y coordinates from mouse pointer in MouseMove event – Afnan Bashir Jun 14 '11 at 21:03
@Lagrangian Shouldn't you be using center of circles instead? One can 'hold' the circle at edge and drag it perfectly over other circle, still your x-y would detect it as a not-so-perfect overlap. – YetAnotherUser Jun 14 '11 at 21:05
@Lagrangian I agree with YetAnotherUser. This problem becomes relatively simple if you know the center of each circle. – uscere90 Jun 14 '11 at 21:09
yeh you are correct – Afnan Bashir Jun 14 '11 at 21:10
feedback

Have a look at this wonderful page at Wolfram

link|improve this answer
feedback

there're many of types of collision. and a good article for circle collision : http://compsci.ca/v3/viewtopic.php?t=14897

link|improve this answer
not collision overlapping – Afnan Bashir Jun 14 '11 at 21:05
feedback

You need some math to calculate the exact result but here is an eat way that will give you good approximation. Calculate the distance between the balls by sqrt((x1-x2)^2+(y1-y2)^2) Your result is approximately (distance/radius*2)^1.8 try thus formulae and see if the precision is good enough

link|improve this answer
why power to 1.8? – Afnan Bashir Jun 14 '11 at 21:12
Because it is must be less than 2 and greater than 1.5. I didn't want to calculate the exact formulae so 1.8 seems like a good rule of thumb. Try it. You can always change it to 1.9, 1.7 e.t – DanielHsH Jun 14 '11 at 21:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.