(v, u)
| 194 | from time import time |
| 195 | |
| 196 | def v_dot_u(v, u): |
| 197 | return v[0]*u[0] + v[1]*u[1] + v[2]*u[2] |
| 198 | def len_v(v): |
| 199 | return pyrender.sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]) |
| 200 |
nothing calls this directly
no outgoing calls
no test coverage detected