I have height, width1 and width2 of a 4 sided polygon. how to detect mouse is clicked in that region.

link|improve this question

25% accept rate
Are you asking how to detect any click in that region, or how to get the exact coordinates of a click in that region? – jshin47 Dec 22 '11 at 6:06
i want to detect mouse click in that region. the sides are not of same size. the angles are also not same. if i know the coordinates at the corner, i can check mouse(x,y) is inside that range or not – Mythili Dec 22 '11 at 6:08
Could you draw a simple picture to explain what parameters are known? – MBo Dec 22 '11 at 9:05
feedback

1 Answer

You're looking for a "point in polygon" algorithm. This link has a description and an implementation example.

link|improve this answer
Thanks a lot. I have 64 polygons (4 sided) in 8x8. They r not regular polygons. shall i apply this logic for them. i dont know the coordinates for all except each polygon width1, width2 and height – Mythili Dec 22 '11 at 7:16
You can apply this logic only if you know all the coordinates. If you don't know where the polygons are, it's obviously impossible to tell whether a click has happened inside or not. If you have only one coordinate for each polygon you can probably calculate the others with your width and height variables before you run the point in polygon algorithm. – Lukas Dec 22 '11 at 16:02
feedback

Your Answer

 
or
required, but never shown

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