Tagged Questions
The atan2 tag has no wiki summary.
3
votes
5answers
3k views
How to map atan2() to degrees 0-360
atan2(y,x) has that discontinuity at 180° where it switches to -180°..0° going clockwise.
How do I map the range of values to 0°..360°?
here is my code:
CGSize deltaPoint = CGSizeMake(endPoint.x - ...
2
votes
3answers
176 views
Calculate angle of touched point and rotate it in Android
Math has defeated me once again. This is such a simple task, but I can't manage to get it done.
Scenario: I draw on a SurfaceView a round image. The user touches a point on image border and starts to ...
1
vote
2answers
30 views
atan2 with CGPoint Iterator
vector<CGPoint>::iterator i;
vector<CGPoint>* bp = bicyclePad.bikePathPoints;
for(i = bp->begin(); i != bp->end()-3; i++){
angle = atan2((*i).y/(*i).x) * 180/ PI;
}
I guess ...
1
vote
2answers
159 views
Is thera a way to reverse the effect of atan2?
I have a specific question about reversing atan2, I will write my code example in PHP.
$radial = 1.12*PI();
$transformed = -atan2(cos($radial)*2, sin($radial)*1.5);
$backToRadial = ?
Is there a way ...
1
vote
1answer
180 views
Using atan2 to rotate an image when dragged with the mouse
I'm working on a skeletal animation editor. Right now, each bone has a start and end point, when the mouse is under a point,subsequent dragging will cause the bone to rotate based on where the mouse ...
1
vote
3answers
200 views
How to calculate third point on line using atan2?
I'm trying to animate some bitmaps out in relation to a center point. They don't all start at that center point, but I want them to fly out as though a force from that center point slammed into them ...
1
vote
2answers
418 views
matlab variance of angles
I have a matrix containing angles and I need to compute the mean and the variance.
for the mean I procede in this way:
for each angles compute sin and cos and sum all sin and all cos
the mean is given ...
1
vote
1answer
167 views
algorithm of calculating the slope between line relatively to center coordinate
Please help with the algorithm of calculating the slope
So we have a Cartesian coordinate system. X right at Y the top. There is a line which passes through the center of coordinates.
Needed to ...
1
vote
2answers
106 views
Angle of a vector pointing from A to B
I'm not the best in Maths, but for what I am doing now I need to calculate the angle of the vector which is shown as arrow in the picture below:
I have a point A and a point B in a 2D plane. I need ...
1
vote
2answers
835 views
Is there a Math.atan2 substitute for j2ME? Blackberry development
I have a wide variety of locations stored in my persistent object that contain latitudes and longitudes in double(43.7389, 7.42577) format. I need to be able to grab the user's latitude and longitude ...
1
vote
6answers
2k views
Draw a polygon in C
i need to draw a polygon of "n" sides given 2 points (the center and 1 of his vertex) just that i suck in math. I have been reading a lot and all this is what i have been able to figure it (i dont ...
0
votes
0answers
21 views
Rotating an image to face the direction its travelling in - ATAN2 and unit vectors
Can anyone tell me why this code is not working, I think its something to do with how I am calculating the unit vectors.
foreach (Bug bug in m_aliveBugs) //for every bug in the aliveBugs list.
...
0
votes
2answers
61 views
image rotation in OpenGL atan2?
Any help with this I'm using OpenGL with C#. I cant use any other libraries other than:
using System;
using OpenGL;
using System.Windows.Forms;
using System.Collections.Generic;
using System.Drawing;
...
0
votes
3answers
99 views
blackfin gcc-toolchain linking error math function like atan2 :undefined reference to … within watan2.o
I've a problem with the classic math function linking of my bare metal program with blackfin tool chain linker. I tried many things but I cannot see why the libm.a does't provide the definitions for ...
0
votes
2answers
207 views
Why is −π < atan2(y, x) ≤ π while for lines we really need only from 0 to π? [closed]
Possible Duplicate:
what is the difference between atan and atan2 in c++ ?
Why is −π < atan2(y, x) ≤ π while for lines we really need only from 0 to π and what has api like atan2 but ...
0
votes
2answers
1k views
help to calculate atan2 properly
I need to calculate the angle between lines. I need to calculate atan. So I am using such code
static inline CGFloat angleBetweenLinesInRadians2(CGPoint line1Start, CGPoint line1End)
{
CGFloat ...
0
votes
2answers
482 views
Angle between two line start at the same point
Lets say I am any two points on 2d plane (p1(x1,y1), p2(x2,y1)) and both points forms a line with the center(c(c1,c2)). Therefore I am two lines end at same point. I want to know how can I calculate ...
0
votes
2answers
579 views
Precision of cos(atan2(y,x)) versus using complex <double>, C++
I'm writing some coordinate transformations (more specifically the Joukoswky Transform, Wikipedia Joukowsky Transform), and I'm interested in performance, but of course precision. I'm trying to do the ...
0
votes
2answers
354 views
Math.Atan2 or class instance problem in C#
Here is my problem (C#) :
double Y = 0.0;
double X = -21.0;
double q1_Test = Math.Atan2(0.0, -21.0); // gives Math.Pi
double q1_Test2 = Math.Atan2(( double)Y, (double)X); // gives ...
-1
votes
1answer
164 views
Pointing to mouse position Jquery
Hy all
I am trying to make a pointer that moves according to the position of your mouse.
I am using Jquery and transforming the radians to degrees, and a plugin for jquery that is called rotate.I ...