Spaces:
Running
Running
File size: 220 Bytes
263e0f2 |
1 2 3 4 5 6 7 8 |
function additionWithoutStart() {
var numAdditions = 1e4;
for (var i = 0; i < numAdditions; ++i) {
var currentTween = new TWEEN.Tween({a: 0.0});
currentTween.to({a: 1.0}, 1.0);
}
} |