Private module function.
(vector)
| 120 | ################################################################################ |
| 121 | |
| 122 | def _ang(vector): |
| 123 | 'Private module function.' |
| 124 | return _math.atan2(vector.x, vector.y) % _PI_M_2 |
| 125 | |
| 126 | def _sub(angle_a, angle_b): |
| 127 | 'Private module function.' |