(out, x, y)
| 369 | |
| 370 | @jit() |
| 371 | def _jit_cross(out, x, y): |
| 372 | out[..., 0] = x[..., 1] * y[..., 2] |
| 373 | out[..., 0] -= x[..., 2] * y[..., 1] |
| 374 | out[..., 1] = x[..., 2] * y[..., 0] |
| 375 | out[..., 1] -= x[..., 0] * y[..., 2] |
| 376 | out[..., 2] = x[..., 0] * y[..., 1] |
| 377 | out[..., 2] -= x[..., 1] * y[..., 0] |
| 378 | |
| 379 | |
| 380 | @jit() |
no outgoing calls
no test coverage detected