()
| 8697 | } |
| 8698 | |
| 8699 | function getNextFaceInPool() { |
| 8700 | |
| 8701 | if ( _faceCount === _facePoolLength ) { |
| 8702 | |
| 8703 | var face = new THREE.RenderableFace(); |
| 8704 | _facePool.push( face ); |
| 8705 | _facePoolLength ++; |
| 8706 | _faceCount ++; |
| 8707 | return face; |
| 8708 | |
| 8709 | } |
| 8710 | |
| 8711 | return _facePool[ _faceCount ++ ]; |
| 8712 | |
| 8713 | |
| 8714 | } |
| 8715 | |
| 8716 | function getNextLineInPool() { |
| 8717 |
no outgoing calls
no test coverage detected