MCPcopy Create free account
hub / github.com/benfry/processing4 / mult

Method mult

core/src/processing/data/FloatDict.java:456–461  ·  view source on GitHub ↗

Multiply a value. @webref floatdict:method @webBrief Multiply a value

(String key, float amount)

Source from the content-addressed store, hash-verified

454 * @webBrief Multiply a value
455 */
456 public void mult(String key, float amount) {
457 int index = index(key);
458 if (index != -1) {
459 values[index] *= amount;
460 }
461 }
462
463
464 /**

Callers

nothing calls this directly

Calls 1

indexMethod · 0.95

Tested by

no test coverage detected