|
1 | 1 | #include <stdio.h>
|
2 | 2 | #include <emscripten/em_math.h>
|
3 | 3 |
|
4 |
| -int main() |
5 |
| -{ |
6 |
| - printf("%f\n", emscripten_math_acos(0.5)); |
7 |
| - printf("%f\n", emscripten_math_acosh(42.0)); |
8 |
| - printf("%f\n", emscripten_math_asin(0.5)); |
9 |
| - printf("%f\n", emscripten_math_asinh(42.0)); |
10 |
| - printf("%f\n", emscripten_math_atan(42.0)); |
11 |
| - printf("%f\n", emscripten_math_atan2(42.0, 13.0)); |
12 |
| - printf("%f\n", emscripten_math_atanh(0.9)); |
13 |
| - printf("%f\n", emscripten_math_cbrt(8.0)); |
14 |
| - printf("%f\n", emscripten_math_cos(42.0)); |
15 |
| - printf("%f\n", emscripten_math_cosh(0.6)); |
16 |
| - printf("%f\n", emscripten_math_exp(2.0)); |
17 |
| - printf("%f\n", emscripten_math_expm1(2.0)); |
18 |
| - printf("%f\n", emscripten_math_fmod(2.0, 0.75)); |
19 |
| - printf("%f\n", emscripten_math_hypot(3, 3.0, 4.0, 5.0)); |
20 |
| - printf("%f\n", emscripten_math_log(42.0)); |
21 |
| - printf("%f\n", emscripten_math_log10(42.0)); |
22 |
| - printf("%f\n", emscripten_math_log1p(42.0)); |
23 |
| - printf("%f\n", emscripten_math_log2(42.0)); |
24 |
| - printf("%f\n", emscripten_math_pow(2.0, 4.0)); |
25 |
| - printf("%d\n", (int)(emscripten_math_random() >= 0 && emscripten_math_random() <= 1)); |
26 |
| - printf("%f\n", emscripten_math_round(42.5)); |
27 |
| - printf("%f\n", emscripten_math_sign(-42.0)); |
28 |
| - printf("%f\n", emscripten_math_sin(42.0)); |
29 |
| - printf("%f\n", emscripten_math_sinh(0.6)); |
30 |
| - printf("%f\n", emscripten_math_sqrt(10000.0)); |
31 |
| - printf("%f\n", emscripten_math_tan(42.0)); |
32 |
| - printf("%f\n", emscripten_math_tanh(42.0)); |
33 |
| - printf("-\n"); |
34 |
| - printf("%f\n", EM_MATH_E); |
35 |
| - printf("%f\n", EM_MATH_LN2); |
36 |
| - printf("%f\n", EM_MATH_LN10); |
37 |
| - printf("%f\n", EM_MATH_LOG2E); |
38 |
| - printf("%f\n", EM_MATH_LOG10E); |
39 |
| - printf("%f\n", EM_MATH_PI); |
40 |
| - printf("%f\n", EM_MATH_SQRT1_2); |
41 |
| - printf("%f\n", EM_MATH_SQRT2); |
| 4 | +int main() { |
| 5 | + printf("%f\n", emscripten_math_acos(0.5)); |
| 6 | + printf("%f\n", emscripten_math_acosh(42.0)); |
| 7 | + printf("%f\n", emscripten_math_asin(0.5)); |
| 8 | + printf("%f\n", emscripten_math_asinh(42.0)); |
| 9 | + printf("%f\n", emscripten_math_atan(42.0)); |
| 10 | + printf("%f\n", emscripten_math_atan2(42.0, 13.0)); |
| 11 | + printf("%f\n", emscripten_math_atanh(0.9)); |
| 12 | + printf("%f\n", emscripten_math_cbrt(8.0)); |
| 13 | + printf("%f\n", emscripten_math_cos(42.0)); |
| 14 | + printf("%f\n", emscripten_math_cosh(0.6)); |
| 15 | + printf("%f\n", emscripten_math_exp(2.0)); |
| 16 | + printf("%f\n", emscripten_math_expm1(2.0)); |
| 17 | + printf("%f\n", emscripten_math_fmod(2.0, 0.75)); |
| 18 | + printf("%f\n", emscripten_math_hypot(3, 3.0, 4.0, 5.0)); |
| 19 | + printf("%f\n", emscripten_math_log(42.0)); |
| 20 | + printf("%f\n", emscripten_math_log10(42.0)); |
| 21 | + printf("%f\n", emscripten_math_log1p(42.0)); |
| 22 | + printf("%f\n", emscripten_math_log2(42.0)); |
| 23 | + printf("%f\n", emscripten_math_pow(2.0, 4.0)); |
| 24 | + printf("%d\n", (int)(emscripten_math_random() >= 0 && emscripten_math_random() <= 1)); |
| 25 | + printf("%f\n", emscripten_math_round(42.5)); |
| 26 | + printf("%f\n", emscripten_math_sign(-42.0)); |
| 27 | + printf("%f\n", emscripten_math_sin(42.0)); |
| 28 | + printf("%f\n", emscripten_math_sinh(0.6)); |
| 29 | + printf("%f\n", emscripten_math_sqrt(10000.0)); |
| 30 | + printf("%f\n", emscripten_math_tan(42.0)); |
| 31 | + printf("%f\n", emscripten_math_tanh(42.0)); |
| 32 | + printf("-\n"); |
| 33 | + printf("%f\n", EM_MATH_E); |
| 34 | + printf("%f\n", EM_MATH_LN2); |
| 35 | + printf("%f\n", EM_MATH_LN10); |
| 36 | + printf("%f\n", EM_MATH_LOG2E); |
| 37 | + printf("%f\n", EM_MATH_LOG10E); |
| 38 | + printf("%f\n", EM_MATH_PI); |
| 39 | + printf("%f\n", EM_MATH_SQRT1_2); |
| 40 | + printf("%f\n", EM_MATH_SQRT2); |
42 | 41 | }
|
0 commit comments