(a, b)
| 132260 | ]; |
| 132261 | } |
| 132262 | function cartesianAddInPlace(a, b) { |
| 132263 | a[0] += b[0], a[1] += b[1], a[2] += b[2]; |
| 132264 | } |
| 132265 | function cartesianScale(vector, k) { |
| 132266 | return [ |
| 132267 | vector[0] * k, |
nothing calls this directly
no outgoing calls
no test coverage detected