MCPcopy
hub / github.com/microsoft/SandDance / max

Function max

docs/app/js/sanddance-app.js:69923–69927  ·  view source on GitHub ↗
(out, a, b)

Source from the content-addressed store, hash-verified

69921 return out;
69922}
69923function max(out, a, b) {
69924 out[0] = Math.max(a[0], b[0]);
69925 out[1] = Math.max(a[1], b[1]);
69926 return out;
69927}
69928function round(out, a) {
69929 out[0] = Math.round(a[0]);
69930 out[1] = Math.round(a[1]);

Callers

nothing calls this directly

Calls 1

maxMethod · 0.45

Tested by

no test coverage detected