MCPcopy Create free account
hub / github.com/breck7/scroll / cartesianDot

Function cartesianDot

external/.d3.js:9998–10000  ·  view source on GitHub ↗
(a, b)

Source from the content-addressed store, hash-verified

9996}
9997
9998function cartesianDot(a, b) {
9999 return a[0] * b[0] + a[1] * b[1] + a[2] * b[2];
10000}
10001
10002function 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]];

Callers 1

intersectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected