EFileTahi-A Posted August 10, 2004 Posted August 10, 2004 Am building a radar system for my game, so, how can i trigger some code if an image / picbox or something colides with the circule, not with the circules box but the circule itself! Or detecting if the mouse click coords (x,y) are within the circules area. PS: Is there any game creators enthusiasts on this forum? I would love to know ppl who would like to share their dreams, projects, their ideias! Maybe we can team up! My strong points are, graphics, sound and Imagination :D Please add me on ur Messenger contact "efiletahi@hotmail.com" - EFileTahi-A - Quote
Joe Mamma Posted August 10, 2004 Posted August 10, 2004 My strong points are, graphics, sound and Imagination :D How's your Math??? Distance formula for point(x1, y1) from a given point(x, y) - ye olde pythagorus: f(x1, y1) = √((x1-x)²+(y1-y)²) Inside circle = f(x1, y1) < R (x, y) is the center of the circle, R is the circle radius, (x1, y1) is a point in question. Collision from inside happens with move of (x1, y1) → (x2, y2) where ( f(x1, y1) < R ) & ( f(x2, y2) ≥ R ) Collision from outside happens with move of (x1, y1) → (x2, y2) where ( f(x1, y1) > R ) & ( f(x2, y2) ≤ R ) Quote Joe Mamma Amendment 4: The right of the people to be secure in their persons, houses, papers, and effects, against unreasonable searches and seizures, shall not be violated, and no warrants shall issue, but upon probable cause, supported by oath or affirmation, and particularly describing the place to be searched, and the persons or things to be seized. Amendment 9: The enumeration in the Constitution, of certain rights, shall not be construed to deny or disparage others retained by the people.
EFileTahi-A Posted August 10, 2004 Author Posted August 10, 2004 (edited) Math is my weakest point... Could u draw me a picture in code of that? Only know to use the Math.sqrt. How do I write "²" and "R" in c#? Edited August 10, 2004 by EFileTahi-A Quote
EFileTahi-A Posted August 13, 2004 Author Posted August 13, 2004 AH! I did it! I create a radar system! YAY! :D Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.