(a, b)
| 10000 | } |
| 10001 | |
| 10002 | function cartesianCross(a, b) { |
| 10003 | return [a[1] * b[2] - a[2] * b[1], a[2] * b[0] - a[0] * b[2], a[0] * b[1] - a[1] * b[0]]; |
| 10004 | } |
| 10005 | |
| 10006 | // TODO return a |
| 10007 | function cartesianAddInPlace(a, b) { |
no outgoing calls
no test coverage detected