()
| 8193 | } |
| 8194 | |
| 8195 | function getNextFace3InPool() { |
| 8196 | |
| 8197 | if ( _face3Count === _face3PoolLength ) { |
| 8198 | |
| 8199 | var face = new THREE.RenderableFace3(); |
| 8200 | _face3Pool.push( face ); |
| 8201 | _face3PoolLength ++; |
| 8202 | _face3Count ++; |
| 8203 | return face; |
| 8204 | |
| 8205 | } |
| 8206 | |
| 8207 | return _face3Pool[ _face3Count ++ ]; |
| 8208 | |
| 8209 | |
| 8210 | } |
| 8211 | |
| 8212 | function getNextLineInPool() { |
| 8213 |