(v, u)
| 17 | length = sqrt(vector[0]**2 + vector[1]**2 + vector[2]**2) |
| 18 | return [vector[0] / length, vector[1] / length, vector[2] / length,] |
| 19 | def v_dot_u(v, u): |
| 20 | return v[0]*u[0] + v[1]*u[1] + v[2]*u[2] |
| 21 | def len_v(v): |
| 22 | return sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]) |
| 23 |
nothing calls this directly
no outgoing calls
no test coverage detected