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