()
| 8147 | } |
| 8148 | |
| 8149 | function getNextFace3InPool() { |
| 8150 | |
| 8151 | if ( _face3Count === _face3PoolLength ) { |
| 8152 | |
| 8153 | var face = new THREE.RenderableFace3(); |
| 8154 | _face3Pool.push( face ); |
| 8155 | _face3PoolLength ++; |
| 8156 | _face3Count ++; |
| 8157 | return face; |
| 8158 | |
| 8159 | } |
| 8160 | |
| 8161 | return _face3Pool[ _face3Count ++ ]; |
| 8162 | |
| 8163 | |
| 8164 | } |
| 8165 | |
| 8166 | function getNextLineInPool() { |
| 8167 |