(width, height)
| 79 | zfar = 100.0; |
| 80 | |
| 81 | constructor(width, height) { |
| 82 | this.aspect = width / height; |
| 83 | } |
| 84 | |
| 85 | buildViewProjMatrix() { |
| 86 | const view = Matrix4.lookAtRh(this.eye, this.target, this.up); |
nothing calls this directly
no outgoing calls
no test coverage detected