MCPcopy Index your code
hub / github.com/stemkoski/stemkoski.github.com / getNextLineInPool

Function getNextLineInPool

7DFPS/js/Three.js:8111–8125  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8109 }
8110
8111 function getNextLineInPool() {
8112
8113 if ( _lineCount === _linePoolLength ) {
8114
8115 var line = new THREE.RenderableLine();
8116 _linePool.push( line );
8117 _linePoolLength ++;
8118 _lineCount ++
8119 return line;
8120
8121 }
8122
8123 return _linePool[ _lineCount ++ ];
8124
8125 }
8126
8127 function getNextParticleInPool() {
8128

Callers 1

Three.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected