MCPcopy
hub / github.com/stemkoski/stemkoski.github.com / getNextLineInPool

Function getNextLineInPool

Three.js/js/Three59dev.js:7719–7733  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

7717 }
7718
7719 function getNextLineInPool() {
7720
7721 if ( _lineCount === _linePoolLength ) {
7722
7723 var line = new THREE.RenderableLine();
7724 _linePool.push( line );
7725 _linePoolLength ++;
7726 _lineCount ++
7727 return line;
7728
7729 }
7730
7731 return _linePool[ _lineCount ++ ];
7732
7733 }
7734
7735 function getNextParticleInPool() {
7736

Callers 1

Three59dev.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected