Tagged Questions
The hypotenuse tag has no wiki summary.
10
votes
3answers
676 views
Why hypot() function is so slow?
I did some testing with C++ hypot() and Java Math.hypot. They both seem to be significantly slower than sqrt(a*a + b*b). Is that because of a better precision? What method to calculate a hypotenuse ...
3
votes
4answers
5k views
Triangle Trigonometry (ActionScript 3)
I am trying to write a formula in ActionScript 3 that will give me var "z" (please see image below) in degrees, which I will then convert to radians.
I will already know the value of vars "x" and ...
2
votes
5answers
2k views
How can I find the arctan of a right triangle using only the hypotenuse?
Okay, so I need to make C go the shortest path from A to B. A to B is the hypotenuse of my right triangle, and I need to give C the arctan of said triangle. How do I do this, and does the formula have ...
0
votes
0answers
61 views
How do I move a UIImageView diagonally in a certain direction?
How would I go about moving a UIImageView through a certain point to the end of the screen through that point. Basically, I know you have to use triangles and so I know I have to calculate the X dist ...
0
votes
1answer
138 views
How to compute hypotenuse and bearing
I got the below code from @DanS at this link how-to-display-a-map-still-image-file-with-a-moving-current-location
onCurrentPosition(Location current){
double hypotenuse = ...