(fovy)
| 80425 | return 2 * Math.atan(0.5 / altitude) * RADIANS_TO_DEGREES; |
| 80426 | } |
| 80427 | function fovyToAltitude(fovy) { |
| 80428 | return 0.5 / Math.tan(0.5 * fovy * DEGREES_TO_RADIANS); |
| 80429 | } |
| 80430 | function worldToPixels(xyz, pixelProjectionMatrix) { |
| 80431 | const [x, y, z = 0] = xyz; |
| 80432 | (0, _assertDefault.default)(Number.isFinite(x) && Number.isFinite(y) && Number.isFinite(z)); |
no outgoing calls
no test coverage detected