少年修仙传客户端基础资源
hch
2024-04-01 d01413b00ef631ac20347716b23818b0b811f65f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/**
 * \file
 *
 * Author:
 *   Dan Lewis (dihlewis@yahoo.co.uk)
 *   Ludovic Henry (ludovic@xamarin.com)
 *
 * (C) Ximian, Inc. 2002
 * Copyright 2015 Xamarin, Inc (https://www.xamarin.com)
 * Licensed under the MIT license. See LICENSE file in the project root for full license information.
 */
 
#ifndef __METADATA_SYSMATH_H__
#define __METADATA_SYSMATH_H__
 
#include <config.h>
#include <glib.h>
 
gdouble
ves_icall_System_Math_Floor (gdouble x);
 
gdouble
ves_icall_System_Math_Round (gdouble x);
 
gdouble
ves_icall_System_Math_Sin (gdouble x);
 
gdouble
ves_icall_System_Math_Cos (gdouble x);
 
gdouble
ves_icall_System_Math_Tan (gdouble x);
 
gdouble
ves_icall_System_Math_Sinh (gdouble x);
 
gdouble
ves_icall_System_Math_Cosh (gdouble x);
 
gdouble
ves_icall_System_Math_Tanh (gdouble x);
 
gdouble
ves_icall_System_Math_Acos (gdouble x);
 
gdouble
ves_icall_System_Math_Asin (gdouble x);
 
gdouble
ves_icall_System_Math_Atan (gdouble x);
 
gdouble
ves_icall_System_Math_Atan2 (gdouble y, gdouble x);
 
gdouble
ves_icall_System_Math_Exp (gdouble x);
 
gdouble
ves_icall_System_Math_Log (gdouble x);
 
gdouble
ves_icall_System_Math_Log10 (gdouble x);
 
gdouble
ves_icall_System_Math_Pow (gdouble x, gdouble y);
 
gdouble
ves_icall_System_Math_Sqrt (gdouble x);
 
gdouble
ves_icall_System_Math_Abs_double (gdouble v);
 
gfloat
ves_icall_System_Math_Abs_single (gfloat v);
 
gdouble
ves_icall_System_Math_SplitFractionDouble (gdouble *v);
 
gdouble
ves_icall_System_Math_Ceiling (gdouble v);
 
#endif