Buckets:
| export const abs = Math.abs; | |
| export const atan2 = Math.atan2; | |
| export const cos = Math.cos; | |
| export const max = Math.max; | |
| export const min = Math.min; | |
| export const sin = Math.sin; | |
| export const sqrt = Math.sqrt; | |
| export const epsilon = 1e-12; | |
| export const pi = Math.PI; | |
| export const halfPi = pi / 2; | |
| export const tau = 2 * pi; | |
| export function acos(x) { | |
| return x > 1 ? 0 : x < -1 ? pi : Math.acos(x); | |
| } | |
| export function asin(x) { | |
| return x >= 1 ? halfPi : x <= -1 ? -halfPi : Math.asin(x); | |
| } | |
Xet Storage Details
- Size:
- 492 Bytes
- Xet hash:
- 0e7e5a8dce4c6635b5f3a3e2fc6e15ab3e2d5ea109f49ddb097c9291868fdc1f
·
Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.