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
1919 * Created by GBarbieri on 28.04.2017.
2020 */
2121
22- class Vec1 (@JvmField inline var x : Float ) : Vec1t<Float>, ToFloatBuffer {
22+ class Vec1 (var x : Float ) : Vec1t<Float>, ToFloatBuffer {
2323
2424 // -- Implicit basic constructors --
2525
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import kool.pos
1919import java.nio.*
2020import kotlin.math.abs
2121
22- class Vec1b (@JvmField inline var x : Byte ) : Vec1t<Byte> {
22+ class Vec1b (var x : Byte ) : Vec1t<Byte> {
2323
2424 // -- Implicit basic constructors --
2525
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import kotlin.math.abs
1919 * Created by GBarbieri on 28.04.2017.
2020 */
2121
22- class Vec1d (@JvmField inline var x : Double ) : Vec1t<Double>, ToDoubleBuffer {
22+ class Vec1d (var x : Double ) : Vec1t<Double>, ToDoubleBuffer {
2323
2424 // -- Implicit basic constructors --
2525
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import kotlin.math.abs
2222 * Created by GBarbieri on 04.04.2017.
2323 */
2424
25- class Vec1i (@JvmField inline var x : Int ) : Vec1t<Int> , ToIntBuffer {
25+ class Vec1i (var x : Int ) : Vec1t<Int> , ToIntBuffer {
2626
2727 // -- Implicit basic constructors --
2828
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import kool.*
1818import java.nio.*
1919import kotlin.math.abs
2020
21- class Vec1l (@JvmField inline var x : Long ) : Vec1t<Long>, ToLongBuffer {
21+ class Vec1l (var x : Long ) : Vec1t<Long>, ToLongBuffer {
2222
2323 // -- Implicit basic constructors --
2424
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import kotlin.math.abs
1919 * Created by GBarbieri on 04.04.2017.
2020 */
2121
22- class Vec1s (@JvmField inline var x : Short ) : Vec1t<Short>, ToShortBuffer {
22+ class Vec1s (var x : Short ) : Vec1t<Short>, ToShortBuffer {
2323
2424 // -- Implicit basic constructors --
2525
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ import kotlin.math.abs
2222 * Created by elect on 07/10/16.
2323 */
2424
25- class Vec1ub (@JvmField inline var x : Ubyte ) : Vec1t<Ubyte> {
25+ class Vec1ub (var x : Ubyte ) : Vec1t<Ubyte> {
2626
2727 // -- Implicit basic constructors --
2828
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import kotlin.math.abs
2121 * Created by elect on 08/10/16.
2222 */
2323
24- class Vec1ui (@JvmField inline var x : Uint ) : Vec1t<Uint>, ToIntBuffer {
24+ class Vec1ui (var x : Uint ) : Vec1t<Uint>, ToIntBuffer {
2525
2626 // -- Implicit basic constructors --
2727
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import java.nio.*
2424 * Created by elect on 08/10/16.
2525 */
2626
27- class Vec1ul (@JvmField inline var x : Ulong ) : Vec1t<Ulong>, ToLongBuffer {
27+ class Vec1ul (var x : Ulong ) : Vec1t<Ulong>, ToLongBuffer {
2828
2929 // -- Implicit basic constructors --
3030
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import java.nio.*
2121 * Created by elect on 08/10/16.
2222 */
2323
24- class Vec1us (@JvmField inline var x : Ushort ) : Vec1t<Ushort>, ToShortBuffer {
24+ class Vec1us (var x : Ushort ) : Vec1t<Ushort>, ToShortBuffer {
2525
2626 // -- Implicit basic constructors --
2727
You can’t perform that action at this time.
0 commit comments