| bio | website | youtube.com/fobwashedgame |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 1 year, 2 months |
| seen | May 17 at 6:13 | |
| stats | profile views | 9 |
|
Apr 6 |
accepted | How to get an angle between a direction faced and a point in 3D space |
|
Apr 6 |
comment |
How to get an angle between a direction faced and a point in 3D space Yup, that did it. From there I just have to change the resulting radian to degrees and the magic happens. Thank you very much for your help. . . Now I get to go about trimming this down as much as possible since it'll be running up to 20,000 times an update =) |
|
Apr 6 |
revised |
How to get an angle between a direction faced and a point in 3D space added 322 characters in body |
|
Apr 6 |
comment |
How to get an angle between a direction faced and a point in 3D space I did some testing and the Math Function does appear to be using Radians instead of Degrees. Converting the angles to radians appears to fix a lot of the strange numbers prior to the final answer. Could you please explain a bit about how the final answer is derived? I follow up until that point but I'm getting a bit lost at the end there. I'll include an updated set of easy numbers for you to look at in the OP. |
|
Apr 6 |
awarded | Editor |
|
Apr 6 |
revised |
How to get an angle between a direction faced and a point in 3D space added 210 characters in body |
|
Apr 6 |
comment |
How to get an angle between a direction faced and a point in 3D space aH = 45; aV = 10; d = 141.421356; h = 172.8; dO = 223.29317285682123; oH = 120.33593043597216; dH = 74.291748100900179; hLOS = 48.167859272081671; dLOS = 88.540422987145647; dW = 173.2452233598635; answer = NaN; The problem might be that C# uses radians instead of degrees? |
|
Apr 6 |
comment |
How to get an angle between a direction faced and a point in 3D space That's very clear and concise but for some strange reason, every single set of variables I plug in is returning Not a Number. I'll write up an example set to show you and hopefully you can see where the error is taking place. |
|
Apr 5 |
asked | How to get an angle between a direction faced and a point in 3D space |
|
Jan 31 |
comment |
Determine which sprite the mouse is over I went ahead and decided to go with Rectangle.Contains. I may run into some issues later on but for now it's getting the job done. Thanks for the help =) |
|
Jan 31 |
accepted | Determine which sprite the mouse is over |
|
Jan 31 |
comment |
Determine which sprite the mouse is over I originally considered using Rectangle.Contains but there are too many situations where my sprites are overlapping. Also, since my sprites are isometric and irregularly shaped, the combination of layered sprites and random empty space between them causes Contain checks to return false positives. /n I've got a system in place that will limit the sprites drawn in the check to a range of around 10~20 per check. Maybe I'll take another crack at using some form of rectangles and just force the player to select near the center of the sprite they want to select |
|
Jan 30 |
asked | Determine which sprite the mouse is over |
|
Sep 30 |
comment |
Most efficient way to check if a point is in or on a convex quad polygon Would this test also allow points that are on the line itself to register as within the polygon? And could you please break down what I would have to do for each edge to store it prior to checking against the test point? |
|
Sep 29 |
accepted | Most efficient way to check if a point is in or on a convex quad polygon |
|
Sep 29 |
comment |
Most efficient way to check if a point is in or on a convex quad polygon Since I will always and only ever will have 4 points in the polygon, instead of [i] I just manually declare and fill the four EV and PV and do the same using floats for the Cross results. I then check to see if all 4 of the cross results are all > 0 or < 0. It seems like changing the check against 0 to a small number seems to work but I'm wondering if this is an incorrect way to go about it. Thanks again for your help! |
|
Sep 29 |
comment |
Most efficient way to check if a point is in or on a convex quad polygon Thanks for the clarification on your original post. I've applied your formula and it seems to be running faster than the other method but I've run into a problem. I need for the check to return true even if a point is laying on an edge and not just within them. Is there any way I could adjust for that using an epsilon somewhere? The way I've got it implemented currently is as follows. |
|
Sep 29 |
comment |
Most efficient way to check if a point is in or on a convex quad polygon Thanks for the suggestions. I tried your second method and it's fewer calculations than the current method I'm using but just barely. I was hoping you might explain your first method a bit more and maybe I could use it in conjunction with storing the equation of the edges as mentioned by dmuir to see if I can't get better results. |
|
Sep 27 |
asked | Most efficient way to check if a point is in or on a convex quad polygon |
|
Jul 17 |
awarded | Supporter |