(options)
| 80417 | }; |
| 80418 | } |
| 80419 | function getProjectionMatrix(options) { |
| 80420 | const { fov , aspect , near , far } = getProjectionParameters(options); |
| 80421 | const projectionMatrix = _mat4.perspective([], fov, aspect, near, far); |
| 80422 | return projectionMatrix; |
| 80423 | } |
| 80424 | function altitudeToFovy(altitude) { |
| 80425 | return 2 * Math.atan(0.5 / altitude) * RADIANS_TO_DEGREES; |
| 80426 | } |
no test coverage detected