MCPcopy Index your code
hub / github.com/plotly/plotly.js / min

Function min

stackgl_modules/index.js:25327–25332  ·  view source on GitHub ↗

* Returns the minimum of two vec3's * * @param {vec3} out the receiving vector * @param {vec3} a the first operand * @param {vec3} b the second operand * @returns {vec3} out

(out, a, b)

Source from the content-addressed store, hash-verified

25325 * @returns {vec3} out
25326 */
25327function min(out, a, b) {
25328 out[0] = Math.min(a[0], b[0])
25329 out[1] = Math.min(a[1], b[1])
25330 out[2] = Math.min(a[2], b[2])
25331 return out
25332}
25333
25334/***/ }),
25335

Callers 1

compareCellsFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected