Returns the length of a vector
(v)
| 169 | |
| 170 | @staticmethod |
| 171 | def length(v): |
| 172 | """Returns the length of a vector""" |
| 173 | return math.sqrt(v.x**2 + v.y**2 + v.z**2) |
| 174 | |
| 175 | @staticmethod |
| 176 | def get_bounding_box(actor): |
no outgoing calls
no test coverage detected