()
| 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 |