File tree 2 files changed +6
-65
lines changed
2 files changed +6
-65
lines changed Original file line number Diff line number Diff line change @@ -88,66 +88,6 @@ class Java {
88
88
89
89
companion object {
90
90
@JvmField
91
- val glm = Glm
92
- }
93
-
94
- object Glm :
95
- mat2x2_operators,
96
- mat3x3_operators,
97
- mat4x4_operators,
98
-
99
- func_common,
100
- func_vector2_common,
101
- func_vector3_common,
102
- func_vector4_common,
103
-
104
- func_vector1_relational,
105
- func_vector2_relational,
106
- func_vector3_relational,
107
- func_vector4_relational,
108
- func_vectorBoolean_relational,
109
-
110
- func_matrix,
111
-
112
- func_exponential,
113
- func_geometric,
114
- func_trigonometric,
115
-
116
- matrix_transform,
117
- quat_func,
118
-
119
- epsilon,
120
-
121
- componentWise,
122
-
123
- round,
124
-
125
- func_integer,
126
-
127
- bitfield,
128
-
129
- colorSpace,
130
-
131
- gauss,
132
-
133
- noise,
134
-
135
- packing,
136
- func_packing,
137
-
138
- random {
139
-
140
- @JvmField
141
- val detail = Detail
142
-
143
- @JvmField
144
- val PI = kotlin.math.PI
145
- @JvmField
146
- val PIf = kotlin.math.PI .f
147
-
148
- @JvmField
149
- val epsilonF = 1 .1920928955078125e- 7f
150
- @JvmField
151
- val epsilon = 2 .2204460492503131e- 16
91
+ val glm = glm_.glm
152
92
}
153
93
}
Original file line number Diff line number Diff line change 1
1
package glm_ ;
2
2
3
- import glm_ .Java .Glm ;
4
3
import glm_ .mat4x4 .Mat4 ;
5
4
import glm_ .vec2 .Vec2 ;
6
5
import glm_ .vec3 .Vec3 ;
7
6
8
- //import static glm.Java.glm;
7
+ //import static glm_.glm;
8
+
9
+ import static glm_ .Java .glm ;
9
10
10
11
/**
11
12
* Created by GBarbieri on 08.02.2017.
12
13
*/
13
14
public class Test {
14
15
15
- final static Glm glm = Glm .INSTANCE ;
16
+ // final static Glm glm = Glm.INSTANCE;
16
17
17
18
public static void main (String [] argvs ) {
18
19
glm .normalize (3.4 );
19
- Glm .detail .mod289 (new Vec2 ());
20
+ glm .detail .mod289 (new Vec2 ());
20
21
21
22
Vec2 v = new Vec2 (3 , 4 );
22
23
You can’t perform that action at this time.
0 commit comments