()
| 8164 | } |
| 8165 | |
| 8166 | function getNextLineInPool() { |
| 8167 | |
| 8168 | if ( _lineCount === _linePoolLength ) { |
| 8169 | |
| 8170 | var line = new THREE.RenderableLine(); |
| 8171 | _linePool.push( line ); |
| 8172 | _linePoolLength ++; |
| 8173 | _lineCount ++ |
| 8174 | return line; |
| 8175 | |
| 8176 | } |
| 8177 | |
| 8178 | return _linePool[ _lineCount ++ ]; |
| 8179 | |
| 8180 | } |
| 8181 | |
| 8182 | function getNextParticleInPool() { |
| 8183 |