()
| 8153 | } |
| 8154 | |
| 8155 | function getNextFace3InPool() { |
| 8156 | |
| 8157 | if ( _face3Count === _face3PoolLength ) { |
| 8158 | |
| 8159 | var face = new THREE.RenderableFace3(); |
| 8160 | _face3Pool.push( face ); |
| 8161 | _face3PoolLength ++; |
| 8162 | _face3Count ++; |
| 8163 | return face; |
| 8164 | |
| 8165 | } |
| 8166 | |
| 8167 | return _face3Pool[ _face3Count ++ ]; |
| 8168 | |
| 8169 | |
| 8170 | } |
| 8171 | |
| 8172 | function getNextLineInPool() { |
| 8173 |