()
| 7684 | } |
| 7685 | |
| 7686 | function getNextFace3InPool() { |
| 7687 | |
| 7688 | if ( _face3Count === _face3PoolLength ) { |
| 7689 | |
| 7690 | var face = new THREE.RenderableFace3(); |
| 7691 | _face3Pool.push( face ); |
| 7692 | _face3PoolLength ++; |
| 7693 | _face3Count ++; |
| 7694 | return face; |
| 7695 | |
| 7696 | } |
| 7697 | |
| 7698 | return _face3Pool[ _face3Count ++ ]; |
| 7699 | |
| 7700 | |
| 7701 | } |
| 7702 | |
| 7703 | function getNextFace4InPool() { |
| 7704 |