()
| 8714 | } |
| 8715 | |
| 8716 | function getNextLineInPool() { |
| 8717 | |
| 8718 | if ( _lineCount === _linePoolLength ) { |
| 8719 | |
| 8720 | var line = new THREE.RenderableLine(); |
| 8721 | _linePool.push( line ); |
| 8722 | _linePoolLength ++; |
| 8723 | _lineCount ++ |
| 8724 | return line; |
| 8725 | |
| 8726 | } |
| 8727 | |
| 8728 | return _linePool[ _lineCount ++ ]; |
| 8729 | |
| 8730 | } |
| 8731 | |
| 8732 | function getNextSpriteInPool() { |
| 8733 |
no outgoing calls
no test coverage detected