()
| 7079 | } |
| 7080 | |
| 7081 | function getNextFace3InPool() { |
| 7082 | |
| 7083 | if ( _face3Count === _face3PoolLength ) { |
| 7084 | |
| 7085 | var face = new THREE.RenderableFace3(); |
| 7086 | _face3Pool.push( face ); |
| 7087 | _face3PoolLength ++; |
| 7088 | _face3Count ++; |
| 7089 | return face; |
| 7090 | |
| 7091 | } |
| 7092 | |
| 7093 | return _face3Pool[ _face3Count ++ ]; |
| 7094 | |
| 7095 | |
| 7096 | } |
| 7097 | |
| 7098 | function getNextFace4InPool() { |
| 7099 |