()
| 440 | window.addEventListener( 'resize', onWindowResize, false ); |
| 441 | |
| 442 | function onWindowResize(){ |
| 443 | |
| 444 | camera.aspect = window.innerWidth / window.innerHeight; |
| 445 | camera.updateProjectionMatrix(); |
| 446 | |
| 447 | renderer.setSize( window.innerWidth, window.innerHeight ); |
| 448 | |
| 449 | } |
| 450 | // interface handling |
| 451 | |
| 452 | var talktime = true; |
nothing calls this directly
no outgoing calls
no test coverage detected