(is_slerp)
| 8 | |
| 9 | |
| 10 | def set_tensor_interpolation_method(is_slerp): |
| 11 | global tensor_interpolation |
| 12 | tensor_interpolation = slerp if is_slerp else linear |
| 13 | |
| 14 | |
| 15 | def linear(v1, v2, t): |
nothing calls this directly
no outgoing calls
no test coverage detected