MCPcopy Create free account
hub / github.com/Code-Bullet/Jump-King / packValues

Function packValues

libraries/p5.js:2770–2782  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2768 }
2769
2770 function packValues() {
2771 var s = '';
2772 for (var i = 0; i < arguments.length; i += 1) {
2773 var v = arguments[i];
2774 if (v >= 0 && i > 0) {
2775 s += ' ';
2776 }
2777
2778 s += floatToString(v);
2779 }
2780
2781 return s;
2782 }
2783
2784 var d = '';
2785 for (var i = 0; i < this.commands.length; i += 1) {

Callers 1

p5.jsFile · 0.85

Calls 1

floatToStringFunction · 0.85

Tested by

no test coverage detected