aboutsummaryrefslogtreecommitdiff
path: root/project/QBarInterpreter/src/com/modulus/qbar/lang/QBMath.java
blob: 33ae0169c3174b838e34ce278f826882b0d8c85f (plain) (blame)
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
package com.modulus.qbar.lang;

public class QBMath {
	public static double abs(double o0){
		return Math.abs(o0);
	}
	/**
	 *@see Math#sin
	 */
	public static double sin(double o0){
		return Math.sin(o0);
	}
	/**
	 *@see Math#cos
	 */
	public static double cos(double o0){
		return Math.cos(o0);
	}
	/**
	 *@see Math#tan
	 */
	public static double tan(double o0){
		return Math.tan(o0);
	}
	/**
	 *@see Math#atan2
	 */
	public static double atan2(double o0, double o1){
		return Math.atan2(o0, o1);
	}
	/**
	 *@see Math#sqrt
	 */
	public static double sqrt(double o0){
		return Math.sqrt(o0);
	}
	/**
	 *@see Math#log
	 */
	public static double log(double o0){
		return Math.log(o0);
	}
	/**
	 *@see Math#log10
	 */
	public static double log10(double o0){
		return Math.log10(o0);
	}
	/**
	 *@see Math#pow
	 */
	public static double pow(double o0, double o1){
		return Math.pow(o0, o1);
	}
	/**
	 *@see Math#exp
	 */
	public static double exp(double o0){
		return Math.exp(o0);
	}
	/**
	 *@see Math#min
	 */
	public static double min(double o0, double o1){
		return Math.min(o0, o1);
	}
	/**
	 *@see Math#max
	 */
	public static double max(double o0, double o1){
		return Math.max(o0, o1);
	}
	/**
	 *@see Math#scalb
	 */
	public static double scalb(double o0, int o1){
		return Math.scalb(o0, o1);
	}
	/**
	 *@see Math#getExponent
	 */
	public static int getExponent(double o0){
		return Math.getExponent(o0);
	}
	/**
	 *@see Math#signum
	 */
	public static double signum(double o0){
		return Math.signum(o0);
	}
	/**
	 *@see Math#asin
	 */
	public static double asin(double o0){
		return Math.asin(o0);
	}
	/**
	 *@see Math#acos
	 */
	public static double acos(double o0){
		return Math.acos(o0);
	}
	/**
	 *@see Math#atan
	 */
	public static double atan(double o0){
		return Math.atan(o0);
	}
	/**
	 *@see Math#toRadians
	 */
	public static double toRadians(double o0){
		return Math.toRadians(o0);
	}
	/**
	 *@see Math#toDegrees
	 */
	public static double toDegrees(double o0){
		return Math.toDegrees(o0);
	}
	/**
	 *@see Math#cbrt
	 */
	public static double cbrt(double o0){
		return Math.cbrt(o0);
	}
	/**
	 *@see Math#IEEEremainder
	 */
	public static double IEEEremainder(double o0, double o1){
		return Math.IEEEremainder(o0, o1);
	}
	/**
	 *@see Math#ceil
	 */
	public static double ceil(double o0){
		return Math.ceil(o0);
	}
	/**
	 *@see Math#floor
	 */
	public static double floor(double o0){
		return Math.floor(o0);
	}
	/**
	 *@see Math#rint
	 */
	public static double rint(double o0){
		return Math.rint(o0);
	}
	/**
	 *@see Math#round
	 */
	public static long round(double o0){
		return Math.round(o0);
	}
	/**
	 *@see Math#random
	 */
	public static double random(){
		return Math.random();
	}
	/**
	 *@see Math#ulp
	 */
	public static double ulp(double o0){
		return Math.ulp(o0);
	}
	/**
	 *@see Math#ulp
	 */
	public static float ulp(float o0){
		return Math.ulp(o0);
	}
	/**
	 *@see Math#sinh
	 */
	public static double sinh(double o0){
		return Math.sinh(o0);
	}
	/**
	 *@see Math#cosh
	 */
	public static double cosh(double o0){
		return Math.cosh(o0);
	}
	/**
	 *@see Math#tanh
	 */
	public static double tanh(double o0){
		return Math.tanh(o0);
	}
	/**
	 *@see Math#hypot
	 */
	public static double hypot(double o0, double o1){
		return Math.hypot(o0, o1);
	}
	/**
	 *@see Math#expm1
	 */
	public static double expm1(double o0){
		return Math.expm1(o0);
	}
	/**
	 *@see Math#log1p
	 */
	public static double log1p(double o0){
		return Math.log1p(o0);
	}
	/**
	 *@see Math#copySign
	 */
	public static double copySign(double o0, double o1){
		return Math.copySign(o0, o1);
	}
	/**
	 *@see Math#nextAfter
	 */
	public static double nextAfter(double o0, double o1){
		return Math.nextAfter(o0, o1);
	}
	/**
	 *@see Math#nextUp
	 */
	public static double nextUp(double o0){
		return Math.nextUp(o0);
	}
	
	/**
	 * returns PI
	 */
	public static double getPI(){
		return Math.PI;
	}
	
	/**
	 * returns E
	 */
	public static double getE(){
		return Math.E;
	}
}