mirror of
https://gitlab.bixilon.de/bixilon/minosoft.git
synced 2025-09-17 11:24:56 -04:00
network: remove Vec3f import
This commit is contained in:
parent
97bfe87f0a
commit
7b490fca9d
@ -12,7 +12,6 @@
|
||||
*/
|
||||
package de.bixilon.minosoft.protocol.protocol
|
||||
|
||||
import com.sun.javafx.geom.Vec3f
|
||||
import de.bixilon.kotlinglm.vec3.Vec3
|
||||
import de.bixilon.kotlinglm.vec3.Vec3d
|
||||
import de.bixilon.kotlinglm.vec3.Vec3i
|
||||
@ -309,10 +308,6 @@ open class OutByteBuffer() {
|
||||
}
|
||||
|
||||
fun writeVec3f(vec3: Vec3) {
|
||||
writeVec3f(Vec3f(vec3.x, vec3.y, vec3.z))
|
||||
}
|
||||
|
||||
fun writeVec3f(vec3: Vec3f) {
|
||||
writeFloat(vec3.x)
|
||||
writeFloat(vec3.y)
|
||||
writeFloat(vec3.z)
|
||||
|
Loading…
x
Reference in New Issue
Block a user