(v)
| 131 | def v_dot_u(v, u): |
| 132 | return v[0]*u[0] + v[1]*u[1] + v[2]*u[2] |
| 133 | def len_v(v): |
| 134 | return sqrt(v[0] * v[0] + v[1] * v[1] + v[2] * v[2]) |
| 135 | |
| 136 | step = 2 |
| 137 | picked_obj = None |
nothing calls this directly
no outgoing calls
no test coverage detected