summaryrefslogtreecommitdiffstats
path: root/src/net/java/joglutils/msg/collections
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2019-12-31 18:23:02 +0100
committerSven Gothel <[email protected]>2019-12-31 18:23:02 +0100
commit332dd8550a2301427dd942d2a77cb59ebd3ec92e (patch)
tree0c860a40c05ba5b27d99770a433b922cbf685f70 /src/net/java/joglutils/msg/collections
parent7ea189170b6ae75b7e15be43344a785eb56bb48a (diff)
Enable compilation using JogAmp 2.4.0 (one demo needs vecmath, dependency issue)HEADmaster
Diffstat (limited to 'src/net/java/joglutils/msg/collections')
-rw-r--r--src/net/java/joglutils/msg/collections/Vec2fCollection.java6
-rw-r--r--src/net/java/joglutils/msg/collections/Vec3fCollection.java6
-rw-r--r--src/net/java/joglutils/msg/collections/Vec4fCollection.java6
3 files changed, 9 insertions, 9 deletions
diff --git a/src/net/java/joglutils/msg/collections/Vec2fCollection.java b/src/net/java/joglutils/msg/collections/Vec2fCollection.java
index d0dadc1..bf4ebb8 100644
--- a/src/net/java/joglutils/msg/collections/Vec2fCollection.java
+++ b/src/net/java/joglutils/msg/collections/Vec2fCollection.java
@@ -37,10 +37,10 @@
package net.java.joglutils.msg.collections;
-import java.nio.*;
+import java.nio.FloatBuffer;
-import net.java.joglutils.msg.impl.*;
-import net.java.joglutils.msg.math.*;
+import net.java.joglutils.msg.impl.BufferFactory;
+import net.java.joglutils.msg.math.Vec2f;
/** Provides the abstraction of a collection of Vec2f objects while
allowing access to the backing store in the form of a direct
diff --git a/src/net/java/joglutils/msg/collections/Vec3fCollection.java b/src/net/java/joglutils/msg/collections/Vec3fCollection.java
index 887b4c9..5714d91 100644
--- a/src/net/java/joglutils/msg/collections/Vec3fCollection.java
+++ b/src/net/java/joglutils/msg/collections/Vec3fCollection.java
@@ -37,10 +37,10 @@
package net.java.joglutils.msg.collections;
-import java.nio.*;
+import java.nio.FloatBuffer;
-import net.java.joglutils.msg.impl.*;
-import net.java.joglutils.msg.math.*;
+import net.java.joglutils.msg.impl.BufferFactory;
+import net.java.joglutils.msg.math.Vec3f;
/** Provides the abstraction of a collection of Vec3f objects while
allowing access to the backing store in the form of a direct
diff --git a/src/net/java/joglutils/msg/collections/Vec4fCollection.java b/src/net/java/joglutils/msg/collections/Vec4fCollection.java
index 2f940cd..1be28ef 100644
--- a/src/net/java/joglutils/msg/collections/Vec4fCollection.java
+++ b/src/net/java/joglutils/msg/collections/Vec4fCollection.java
@@ -37,10 +37,10 @@
package net.java.joglutils.msg.collections;
-import java.nio.*;
+import java.nio.FloatBuffer;
-import net.java.joglutils.msg.impl.*;
-import net.java.joglutils.msg.math.*;
+import net.java.joglutils.msg.impl.BufferFactory;
+import net.java.joglutils.msg.math.Vec4f;
/** Provides the abstraction of a collection of Vec4f objects while
allowing access to the backing store in the form of a direct