forgi.threedee.utilities.my_math module¶
-
forgi.threedee.utilities.my_math.
atan3
(p1, p2)[source]¶ Return the angle between the two points in the range between 0 and 2 * pi.
The angle is first obtained from math.atan2. The if it is less 0, it is added to 2 * pi.
@param p1: The first point @param p2: The second point @return: The angle between the two points.