MCPcopy Create free account
hub / github.com/microsoft/SandDance / divideScalar

Method divideScalar

docs/app/js/sanddance-app.js:69367–69369  ·  view source on GitHub ↗
(a)

Source from the content-addressed store, hash-verified

69365 return this.check();
69366 }
69367 divideScalar(a) {
69368 return this.multiplyByScalar(1 / a);
69369 }
69370 clampScalar(min, max) {
69371 for(let i = 0; i < this.ELEMENTS; ++i)this[i] = Math.min(Math.max(this[i], min), max);
69372 return this.check();

Callers

nothing calls this directly

Calls 1

multiplyByScalarMethod · 0.95

Tested by

no test coverage detected