File tree Expand file tree Collapse file tree 10 files changed +10
-10
lines changed
src/main/kotlin/glm_/vec1 Expand file tree Collapse file tree 10 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import kotlin.math.abs
19
19
* Created by GBarbieri on 28.04.2017.
20
20
*/
21
21
22
- class Vec1 (@JvmField inline var x : Float ) : Vec1t<Float>, ToFloatBuffer {
22
+ class Vec1 (var x : Float ) : Vec1t<Float>, ToFloatBuffer {
23
23
24
24
// -- Implicit basic constructors --
25
25
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import kool.pos
19
19
import java.nio.*
20
20
import kotlin.math.abs
21
21
22
- class Vec1b (@JvmField inline var x : Byte ) : Vec1t<Byte> {
22
+ class Vec1b (var x : Byte ) : Vec1t<Byte> {
23
23
24
24
// -- Implicit basic constructors --
25
25
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import kotlin.math.abs
19
19
* Created by GBarbieri on 28.04.2017.
20
20
*/
21
21
22
- class Vec1d (@JvmField inline var x : Double ) : Vec1t<Double>, ToDoubleBuffer {
22
+ class Vec1d (var x : Double ) : Vec1t<Double>, ToDoubleBuffer {
23
23
24
24
// -- Implicit basic constructors --
25
25
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import kotlin.math.abs
22
22
* Created by GBarbieri on 04.04.2017.
23
23
*/
24
24
25
- class Vec1i (@JvmField inline var x : Int ) : Vec1t<Int> , ToIntBuffer {
25
+ class Vec1i (var x : Int ) : Vec1t<Int> , ToIntBuffer {
26
26
27
27
// -- Implicit basic constructors --
28
28
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import kool.*
18
18
import java.nio.*
19
19
import kotlin.math.abs
20
20
21
- class Vec1l (@JvmField inline var x : Long ) : Vec1t<Long>, ToLongBuffer {
21
+ class Vec1l (var x : Long ) : Vec1t<Long>, ToLongBuffer {
22
22
23
23
// -- Implicit basic constructors --
24
24
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import kotlin.math.abs
19
19
* Created by GBarbieri on 04.04.2017.
20
20
*/
21
21
22
- class Vec1s (@JvmField inline var x : Short ) : Vec1t<Short>, ToShortBuffer {
22
+ class Vec1s (var x : Short ) : Vec1t<Short>, ToShortBuffer {
23
23
24
24
// -- Implicit basic constructors --
25
25
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import kotlin.math.abs
22
22
* Created by elect on 07/10/16.
23
23
*/
24
24
25
- class Vec1ub (@JvmField inline var x : Ubyte ) : Vec1t<Ubyte> {
25
+ class Vec1ub (var x : Ubyte ) : Vec1t<Ubyte> {
26
26
27
27
// -- Implicit basic constructors --
28
28
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import kotlin.math.abs
21
21
* Created by elect on 08/10/16.
22
22
*/
23
23
24
- class Vec1ui (@JvmField inline var x : Uint ) : Vec1t<Uint>, ToIntBuffer {
24
+ class Vec1ui (var x : Uint ) : Vec1t<Uint>, ToIntBuffer {
25
25
26
26
// -- Implicit basic constructors --
27
27
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import java.nio.*
24
24
* Created by elect on 08/10/16.
25
25
*/
26
26
27
- class Vec1ul (@JvmField inline var x : Ulong ) : Vec1t<Ulong>, ToLongBuffer {
27
+ class Vec1ul (var x : Ulong ) : Vec1t<Ulong>, ToLongBuffer {
28
28
29
29
// -- Implicit basic constructors --
30
30
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import java.nio.*
21
21
* Created by elect on 08/10/16.
22
22
*/
23
23
24
- class Vec1us (@JvmField inline var x : Ushort ) : Vec1t<Ushort>, ToShortBuffer {
24
+ class Vec1us (var x : Ushort ) : Vec1t<Ushort>, ToShortBuffer {
25
25
26
26
// -- Implicit basic constructors --
27
27
You can’t perform that action at this time.
0 commit comments