de.bixilon.kotlinglm.vec3.Vec3ul.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-glm Show documentation
Show all versions of kotlin-glm Show documentation
Kotlin port of OpenGL Mathematics (GLM)
package de.bixilon.kotlinglm.vec3
import de.bixilon.kotlinglm.*
import de.bixilon.kotlinglm.vec1.Vec1bool
import de.bixilon.kotlinglm.vec1.Vec1t
import de.bixilon.kotlinglm.vec2.Vec2bool
import de.bixilon.kotlinglm.vec2.Vec2t
import de.bixilon.kotlinglm.vec2.Vec2ul
import de.bixilon.kotlinglm.vec3.operators.op_Vec3ul
import de.bixilon.kotlinglm.vec4.Vec4bool
import de.bixilon.kotlinglm.vec4.Vec4t
import de.bixilon.kotlinkool.*
import org.lwjgl.system.MemoryStack
import org.lwjgl.system.MemoryUtil.memGetLong
import org.lwjgl.system.MemoryUtil.memPutLong
import unsigned.Ulong
import java.io.PrintStream
import java.nio.*
/**
* Created by elect on 09/10/16.
*/
class Vec3ul(var ofs: Int, var array: LongArray) : Vec3t(), ToBuffer {
override var x: Ulong
get() = Ulong(array[ofs])
set(value) = array.set(ofs, value.v)
override var y: Ulong
get() = Ulong(array[ofs + 1])
set(value) = array.set(ofs + 1, value.v)
override var z: Ulong
get() = Ulong(array[ofs + 2])
set(value) = array.set(ofs + 2, value.v)
inline var vX: Long
get() = array[ofs]
set(value) = array.set(ofs, value)
inline var vY: Long
get() = array[ofs + 1]
set(value) = array.set(ofs + 1, value)
inline var vZ: Long
get() = array[ofs + 2]
set(value) = array.set(ofs + 2, value)
// -- Implicit basic constructors --
constructor() : this(0, 0, 0)
constructor(v: Vec3ul) : this(v.x, v.y, v.z)
constructor(v: Vec2ul) : this(v.x, v.y, Ulong(0))
// -- Explicit basic constructors --
@JvmOverloads
constructor(x: Ulong, y: Ulong = x, z: Ulong = x) : this(0, longArrayOf(x.L, y.L, z.L))
@JvmOverloads
constructor(x: Long, y: Long = x, z: Long = x) : this(0, longArrayOf(x, y, z))
// -- Conversion scalar constructors --
constructor(v: Vec1t) : this(v.x, v.x, v.x)
// Explicit converions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification)
@JvmOverloads
constructor(x: Number, y: Number = x, z: Number = x) : this(x.ul, y.ul, z.ul)
constructor(x: Vec1t, y: Number, z: Number) : this(x.x, y, z)
constructor(x: Number, y: Vec1t, z: Number) : this(x, y.x, z)
constructor(x: Vec1t, y: Vec1t, z: Number) : this(x.x, y.x, z)
constructor(x: Number, y: Number, z: Vec1t) : this(x, y, z.x)
constructor(x: Vec1t, y: Number, z: Vec1t) : this(x.x, y, z.x)
constructor(x: Number, y: Vec1t, z: Vec1t) : this(x, y.x, z.x)
constructor(x: Vec1t, y: Vec1t, z: Vec1t) : this(x.x, y.x, z.x)
// -- Conversion vector constructors --
// Explicit conversions (From section 5.4.1 Conversion and scalar constructors of GLSL 1.30.08 specification)
@JvmOverloads
constructor(xy: Vec2t, z: Number = 0) : this(xy.x, xy.y, z)
constructor(xy: Vec2t, z: Vec1t) : this(xy.x, xy.y, z.x)
constructor(x: Number, yz: Vec2t) : this(x, yz.x, yz.y)
constructor(x: Vec1t, yz: Vec2t) : this(x.x, yz.x, yz.y)
constructor(v: Vec3t) : this(v.x, v.y, v.z)
constructor(v: Vec4t) : this(v.x, v.y, v.z)
constructor(v: Vec1bool) : this(v.x.ul, 0, 0)
constructor(v: Vec2bool) : this(v.x.ul, v.y.ul, 0)
constructor(v: Vec3bool) : this(v.x.ul, v.y.ul, v.z.ul)
constructor(v: Vec4bool) : this(v.x.ul, v.y.ul, v.z.ul)
constructor(bytes: ByteArray, index: Int = 0, oneByteOneUlong: Boolean = false, bigEndian: Boolean = true) : this(
if (oneByteOneUlong) bytes[index].ul else bytes.getUlong(index, bigEndian),
if (oneByteOneUlong) bytes[index + 1].ul else bytes.getUlong(index + Ulong.BYTES, bigEndian),
if (oneByteOneUlong) bytes[index + 2].ul else bytes.getUlong(index + Ulong.BYTES * 2, bigEndian))
constructor(chars: CharArray, index: Int = 0) : this(chars[index].ul, chars[index + 1].ul, chars[index + 2].ul)
constructor(shorts: ShortArray, index: Int = 0) : this(shorts[index], shorts[index + 1], shorts[index + 2])
constructor(ints: IntArray, index: Int = 0) : this(ints[index], ints[index + 1], ints[index + 2])
constructor(longs: LongArray, index: Int = 0) : this(longs[index], longs[index + 1], longs[index + 2])
constructor(floats: FloatArray, index: Int = 0) : this(floats[index], floats[index + 1], floats[index + 2])
constructor(doubles: DoubleArray, index: Int = 0) : this(doubles[index], doubles[index + 1], doubles[index + 2])
constructor(booleans: BooleanArray, index: Int = 0) : this(booleans[index].ul, booleans[index + 1].ul, booleans[index + 2].ul)
constructor(numbers: Array, index: Int = 0) : this(numbers[index], numbers[index + 1], numbers[index + 2])
constructor(chars: Array, index: Int = 0) : this(chars[index].ul, chars[index + 1].ul, chars[index + 2].ul)
constructor(booleans: Array, index: Int = 0) : this(booleans[index].ul, booleans[index + 1].ul, booleans[index + 2].ul)
constructor(list: Iterable<*>, index: Int = 0) : this(list.elementAt(index)!!.toLong, list.elementAt(index + 1)!!.toLong,
list.elementAt(index + 2)!!.toLong)
constructor(bytes: ByteBuffer, index: Int = bytes.pos, oneByteOneUlong: Boolean = false) : this(
if (oneByteOneUlong) bytes[index].ul else bytes.getLong(index).ul,
if (oneByteOneUlong) bytes[index + 1].ul else bytes.getLong(index + Ulong.BYTES).ul,
if (oneByteOneUlong) bytes[index + 2].ul else bytes.getLong(index + Ulong.BYTES * 2).ul)
constructor(chars: CharBuffer, index: Int = chars.pos) : this(chars[index].ul, chars[index + 1].ul, chars[index + 2].ul)
constructor(shorts: ShortBuffer, index: Int = shorts.pos) : this(shorts[index], shorts[index + 1], shorts[index + 2])
constructor(ints: IntBuffer, index: Int = ints.pos) : this(ints[index], ints[index + 1], ints[index + 2])
constructor(longs: LongBuffer, index: Int = longs.pos) : this(longs[index], longs[index + 1], longs[index + 2])
constructor(floats: FloatBuffer, index: Int = floats.pos) : this(floats[index], floats[index + 1], floats[index + 2])
constructor(doubles: DoubleBuffer, index: Int = doubles.pos) : this(doubles[index], doubles[index + 1], doubles[index + 2])
constructor(block: (Int) -> Ulong) : this(block(0), block(1), block(2))
fun set(bytes: ByteArray, index: Int = 0, oneByteOneUlong: Boolean = false, bigEndian: Boolean = true) {
x.v = if (oneByteOneUlong) bytes[index].L else bytes.getLong(index, bigEndian)
y.v = if (oneByteOneUlong) bytes[index + 1].L else bytes.getLong(index + Ulong.BYTES, bigEndian)
z.v = if (oneByteOneUlong) bytes[index + 2].L else bytes.getLong(index + Ulong.BYTES * 2, bigEndian)
}
fun set(bytes: ByteBuffer, index: Int = bytes.pos, oneByteOneUlong: Boolean = false) {
x.v = if (oneByteOneUlong) bytes[index].L else bytes.getLong(index)
y.v = if (oneByteOneUlong) bytes[index + 1].L else bytes.getLong(index + Ulong.BYTES)
z.v = if (oneByteOneUlong) bytes[index + 2].L else bytes.getLong(index + Ulong.BYTES * 2)
}
fun put(x: Ulong, y: Ulong, z: Ulong) {
this.x = x
this.y = y
this.z = z
}
operator fun invoke(x: Ulong, y: Ulong, z: Ulong): Vec3ul {
this.x = x
this.y = y
this.z = z
return this
}
fun put(x: Long, y: Long, z: Long) {
this.x.v = x
this.y.v = y
this.z.v = z
}
operator fun invoke(x: Long, y: Long, z: Long): Vec3ul {
this.x.v = x
this.y.v = y
this.z.v = z
return this
}
override fun put(x: Number, y: Number, z: Number) {
this.x = x.ul
this.y = y.ul
this.z = z.ul
}
override operator fun invoke(x: Number, y: Number, z: Number): Vec3ul {
this.x = x.ul
this.y = y.ul
this.z = z.ul
return this
}
fun to(bytes: ByteArray, index: Int): ByteArray = to(bytes, index, true)
override fun to(bytes: ByteArray, index: Int, bigEndian: Boolean): ByteArray {
bytes.putLong(index, x.v)
bytes.putLong(index + Long.BYTES, y.v)
bytes.putLong(index + Long.BYTES * 2, z.v)
return bytes
}
fun toLongArray(): LongArray = to(LongArray(length), 0)
infix fun to(longs: LongArray): LongArray = to(longs, 0)
fun to(longs: LongArray, index: Int): LongArray {
System.arraycopy(array, ofs, longs, index, length)
return longs
}
override fun to(buf: ByteBuffer, offset: Int): ByteBuffer {
buf.putLong(offset, x.v)
buf.putLong(offset + Long.BYTES, y.v)
buf.putLong(offset + Long.BYTES * 2, z.v)
return buf
}
fun toLongBufferStack(): LongBuffer = to(MemoryStack.stackGet().mallocLong(length), 0)
infix fun toLongBuffer(stack: MemoryStack): LongBuffer = to(stack.mallocLong(length), 0)
fun toLongBuffer(): LongBuffer = to(LongBuffer(length), 0)
infix fun to(buf: LongBuffer): LongBuffer = to(buf, buf.pos)
fun to(buf: LongBuffer, index: Int): LongBuffer {
buf[index] = x.v
buf[index + 1] = y.v
buf[index + 2] = z.v
return buf
}
infix fun to(ptr: Ptr) {
memPutLong(ptr, x.v)
memPutLong(ptr + Long.BYTES, y.v)
memPutLong(ptr + Long.BYTES * 2, z.v)
}
// -- Component accesses --
operator fun set(index: Int, value: Ulong) = when (index) {
0 -> x = value
1 -> y = value
2 -> z = value
else -> throw ArrayIndexOutOfBoundsException()
}
override operator fun set(index: Int, value: Number) = when (index) {
0 -> x = value.ul
1 -> y = value.ul
2 -> z = value.ul
else -> throw ArrayIndexOutOfBoundsException()
}
// -- Unary arithmetic operators --
operator fun unaryPlus() = this
// no unaryMinus operator, only signed
// -- Increment main.and decrement operators --
operator fun inc(res: Vec3ul = Vec3ul()) = plus(res, this, 1, 1, 1)
fun incAssign() = plus(this, this, 1, 1, 1)
operator fun dec(res: Vec3ul = Vec3ul()) = minus(res, this, 1, 1, 1)
fun decAssign() = minus(this, this, 1, 1, 1)
// -- Specific binary arithmetic operators --
operator fun plus(b: Ulong) = plus(Vec3ul(), this, b, b, b)
operator fun plus(b: Long) = plus(Vec3ul(), this, b, b, b)
operator fun plus(b: Vec3ul) = plus(Vec3ul(), this, b.x, b.y, b.z)
fun plus(bX: Ulong, bY: Ulong, bZ: Ulong, res: Vec3ul = Vec3ul()) = plus(res, this, bX, bY, bZ)
fun plus(bX: Long, bY: Long, bZ: Long, res: Vec3ul = Vec3ul()) = plus(res, this, bX, bY, bZ)
fun plus(b: Ulong, res: Vec3ul = Vec3ul()) = plus(res, this, b, b, b)
fun plus(b: Long, res: Vec3ul = Vec3ul()) = plus(res, this, b, b, b)
fun plus(b: Vec3ul, res: Vec3ul = Vec3ul()) = plus(res, this, b.x, b.y, b.z)
fun plusAssign(bX: Ulong, bY: Ulong, bZ: Ulong) = plus(this, this, bX, bY, bZ)
fun plusAssign(bX: Long, bY: Long, bZ: Long) = plus(this, this, bX, bY, bZ)
infix operator fun plusAssign(b: Ulong) {
plus(this, this, b, b, b)
}
infix operator fun plusAssign(b: Long) {
plus(this, this, b, b, b)
}
infix operator fun plusAssign(b: Vec3ul) {
plus(this, this, b.x, b.y, b.z)
}
operator fun minus(b: Ulong) = minus(Vec3ul(), this, b, b, b)
operator fun minus(b: Long) = minus(Vec3ul(), this, b, b, b)
operator fun minus(b: Vec3ul) = minus(Vec3ul(), this, b.x, b.y, b.z)
fun minus(bX: Ulong, bY: Ulong, bZ: Ulong, res: Vec3ul = Vec3ul()) = minus(res, this, bX, bY, bZ)
fun minus(bX: Long, bY: Long, bZ: Long, res: Vec3ul = Vec3ul()) = minus(res, this, bX, bY, bZ)
fun minus(b: Ulong, res: Vec3ul = Vec3ul()) = minus(res, this, b, b, b)
fun minus(b: Long, res: Vec3ul = Vec3ul()) = minus(res, this, b, b, b)
fun minus(b: Vec3ul, res: Vec3ul = Vec3ul()) = minus(res, this, b.x, b.y, b.z)
fun minusAssign(bX: Ulong, bY: Ulong, bZ: Ulong) = minus(this, this, bX, bY, bZ)
fun minusAssign(bX: Long, bY: Long, bZ: Long) = minus(this, this, bX, bY, bZ)
infix operator fun minusAssign(b: Ulong) {
minus(this, this, b, b, b)
}
infix operator fun minusAssign(b: Long) {
minus(this, this, b, b, b)
}
infix operator fun minusAssign(b: Vec3ul) {
minus(this, this, b.x, b.y, b.z)
}
operator fun times(b: Ulong) = times(Vec3ul(), this, b, b, b)
operator fun times(b: Long) = times(Vec3ul(), this, b, b, b)
operator fun times(b: Vec3ul) = times(Vec3ul(), this, b.x, b.y, b.z)
fun times(bX: Ulong, bY: Ulong, bZ: Ulong, res: Vec3ul = Vec3ul()) = times(res, this, bX, bY, bZ)
fun times(bX: Long, bY: Long, bZ: Long, res: Vec3ul = Vec3ul()) = times(res, this, bX, bY, bZ)
fun times(b: Ulong, res: Vec3ul = Vec3ul()) = times(res, this, b, b, b)
fun times(b: Long, res: Vec3ul = Vec3ul()) = times(res, this, b, b, b)
fun times(b: Vec3ul, res: Vec3ul = Vec3ul()) = times(res, this, b.x, b.y, b.z)
fun timesAssign(bX: Ulong, bY: Ulong, bZ: Ulong) = times(this, this, bX, bY, bZ)
fun timesAssign(bX: Long, bY: Long, bZ: Long) = times(this, this, bX, bY, bZ)
infix operator fun timesAssign(b: Ulong) {
times(this, this, b, b, b)
}
infix operator fun timesAssign(b: Long) {
times(this, this, b, b, b)
}
infix operator fun timesAssign(b: Vec3ul) {
times(this, this, b.x, b.y, b.z)
}
operator fun div(b: Ulong) = div(Vec3ul(), this, b, b, b)
operator fun div(b: Long) = div(Vec3ul(), this, b, b, b)
operator fun div(b: Vec3ul) = div(Vec3ul(), this, b.x, b.y, b.z)
fun div(bX: Ulong, bY: Ulong, bZ: Ulong, res: Vec3ul = Vec3ul()) = div(res, this, bX, bY, bZ)
fun div(bX: Long, bY: Long, bZ: Long, res: Vec3ul = Vec3ul()) = div(res, this, bX, bY, bZ)
fun div(b: Ulong, res: Vec3ul = Vec3ul()) = div(res, this, b, b, b)
fun div(b: Long, res: Vec3ul = Vec3ul()) = div(res, this, b, b, b)
fun div(b: Vec3ul, res: Vec3ul = Vec3ul()) = div(res, this, b.x, b.y, b.z)
fun divAssign(bX: Ulong, bY: Ulong, bZ: Ulong) = div(this, this, bX, bY, bZ)
fun divAssign(bX: Long, bY: Long, bZ: Long) = div(this, this, bX, bY, bZ)
infix operator fun divAssign(b: Ulong) {
div(this, this, b, b, b)
}
infix operator fun divAssign(b: Long) {
div(this, this, b, b, b)
}
infix operator fun divAssign(b: Vec3ul) {
div(this, this, b.x, b.y, b.z)
}
operator fun rem(b: Ulong) = rem(Vec3ul(), this, b, b, b)
operator fun rem(b: Long) = rem(Vec3ul(), this, b, b, b)
operator fun rem(b: Vec3ul) = rem(Vec3ul(), this, b.x, b.y, b.z)
fun rem(bX: Ulong, bY: Ulong, bZ: Ulong, res: Vec3ul = Vec3ul()) = rem(res, this, bX, bY, bZ)
fun rem(bX: Long, bY: Long, bZ: Long, res: Vec3ul = Vec3ul()) = rem(res, this, bX, bY, bZ)
fun rem(b: Ulong, res: Vec3ul = Vec3ul()) = rem(res, this, b, b, b)
fun rem(b: Long, res: Vec3ul = Vec3ul()) = rem(res, this, b, b, b)
fun rem(b: Vec3ul, res: Vec3ul = Vec3ul()) = rem(res, this, b.x, b.y, b.z)
fun remAssign(bX: Ulong, bY: Ulong, bZ: Ulong) = rem(this, this, bX, bY, bZ)
fun remAssign(bX: Long, bY: Long, bZ: Long) = rem(this, this, bX, bY, bZ)
infix operator fun remAssign(b: Ulong) {
rem(this, this, b, b, b)
}
infix operator fun remAssign(b: Long) {
rem(this, this, b, b, b)
}
infix operator fun remAssign(b: Vec3ul) {
rem(this, this, b.x, b.y, b.z)
}
// -- Generic binary arithmetic operators --
operator fun plus(b: Number) = plus(Vec3ul(), this, b.L, b.L, b.L)
operator fun plus(b: Vec3t) = plus(Vec3ul(), this, b.x.L, b.y.L, b.z.L)
fun plus(bX: Number, bY: Number, bZ: Number, res: Vec3ul = Vec3ul()) = plus(res, this, bX.L, bY.L, bZ.L)
fun plus(b: Number, res: Vec3ul = Vec3ul()) = plus(res, this, b.L, b.L, b.L)
fun plus(b: Vec3t, res: Vec3ul = Vec3ul()) = plus(res, this, b.x.L, b.y.L, b.z.L)
fun plusAssign(bX: Number, bY: Number, bZ: Number) = plus(this, this, bX.L, bY.L, bZ.L)
infix operator fun plusAssign(b: Number) {
plus(this, this, b.L, b.L, b.L)
}
infix operator fun plusAssign(b: Vec3t) {
plus(this, this, b.x.L, b.y.L, b.z.L)
}
operator fun minus(b: Number) = minus(Vec3ul(), this, b.L, b.L, b.L)
operator fun minus(b: Vec3t) = minus(Vec3ul(), this, b.x.L, b.y.L, b.z.L)
fun minus(bX: Number, bY: Number, bZ: Number, res: Vec3ul = Vec3ul()) = minus(res, this, bX.L, bY.L, bZ.L)
fun minus(b: Number, res: Vec3ul = Vec3ul()) = minus(res, this, b.L, b.L, b.L)
fun minus(b: Vec3t, res: Vec3ul = Vec3ul()) = minus(res, this, b.x.L, b.y.L, b.z.L)
fun minusAssign(bX: Number, bY: Number, bZ: Number) = minus(this, this, bX.L, bY.L, bZ.L)
infix operator fun minusAssign(b: Number) {
minus(this, this, b.L, b.L, b.L)
}
infix operator fun minusAssign(b: Vec3t) {
minus(this, this, b.x.L, b.y.L, b.z.L)
}
operator fun times(b: Number) = times(Vec3ul(), this, b.L, b.L, b.L)
operator fun times(b: Vec3t) = times(Vec3ul(), this, b.x.L, b.y.L, b.z.L)
fun times(bX: Number, bY: Number, bZ: Number, res: Vec3ul = Vec3ul()) = times(res, this, bX.L, bY.L, bZ.L)
fun times(b: Number, res: Vec3ul = Vec3ul()) = times(res, this, b.L, b.L, b.L)
fun times(b: Vec3t, res: Vec3ul = Vec3ul()) = times(res, this, b.x.L, b.y.L, b.z.L)
fun timesAssign(bX: Number, bY: Number, bZ: Number) = times(this, this, bX.L, bY.L, bZ.L)
infix operator fun timesAssign(b: Number) {
times(this, this, b.L, b.L, b.L)
}
infix operator fun timesAssign(b: Vec3t) {
times(this, this, b.x.L, b.y.L, b.z.L)
}
operator fun div(b: Number) = div(Vec3ul(), this, b.L, b.L, b.L)
operator fun div(b: Vec3t) = div(Vec3ul(), this, b.x.L, b.y.L, b.z.L)
fun div(bX: Number, bY: Number, bZ: Number, res: Vec3ul = Vec3ul()) = div(res, this, bX.L, bY.L, bZ.L)
fun div(b: Number, res: Vec3ul = Vec3ul()) = div(res, this, b.L, b.L, b.L)
fun div(b: Vec3t, res: Vec3ul = Vec3ul()) = div(res, this, b.x.L, b.y.L, b.z.L)
fun divAssign(bX: Number, bY: Number, bZ: Number) = div(this, this, bX.L, bY.L, bZ.L)
infix operator fun divAssign(b: Number) {
div(this, this, b.L, b.L, b.L)
}
infix operator fun divAssign(b: Vec3t) {
div(this, this, b.x.L, b.y.L, b.z.L)
}
operator fun rem(b: Number) = rem(Vec3ul(), this, b.L, b.L, b.L)
operator fun rem(b: Vec3t) = rem(Vec3ul(), this, b.x.L, b.y.L, b.z.L)
fun rem(bX: Number, bY: Number, bZ: Number, res: Vec3ul = Vec3ul()) = rem(res, this, bX.L, bY.L, bZ.L)
fun rem(b: Number, res: Vec3ul = Vec3ul()) = rem(res, this, b.L, b.L, b.L)
fun rem(b: Vec3t, res: Vec3ul = Vec3ul()) = rem(res, this, b.x.L, b.y.L, b.z.L)
fun remAssign(bX: Number, bY: Number, bZ: Number) = rem(this, this, bX.L, bY.L, bZ.L)
infix operator fun remAssign(b: Number) {
rem(this, this, b.L, b.L, b.L)
}
infix operator fun remAssign(b: Vec3t) {
rem(this, this, b.x.L, b.y.L, b.z.L)
}
// -- Specific bitwise operators --
infix fun and(b: Ulong) = and(Vec3ul(), this, b, b, b)
infix fun and(b: Long) = and(Vec3ul(), this, b, b, b)
fun and(bX: Ulong, bY: Ulong, bZ: Ulong) = and(Vec3ul(), this, bX, bY, bZ)
fun and(bX: Long, bY: Long, bZ: Long) = and(Vec3ul(), this, bX, bY, bZ)
fun and(b: Vec3ul) = and(Vec3ul(), this, b.x, b.y, b.z)
infix fun andAssign(b: Ulong) = and(this, this, b, b, b)
infix fun andAssign(b: Long) = and(this, this, b, b, b)
fun andAssign(bX: Ulong, bY: Ulong, bZ: Ulong) = and(this, this, bX, bY, bZ)
fun andAssign(bX: Long, bY: Long, bZ: Long) = and(this, this, bX, bY, bZ)
infix fun andAssign(b: Vec3ul) = and(this, this, b.x, b.y, b.z)
fun and(b: Ulong, res: Vec3ul) = and(res, this, b, b, b)
fun and(b: Long, res: Vec3ul) = and(res, this, b, b, b)
fun and(bX: Ulong, bY: Ulong, bZ: Ulong, res: Vec3ul) = and(res, this, bX, bY, bZ)
fun and(bX: Long, bY: Long, bZ: Long, res: Vec3ul) = and(res, this, bX, bY, bZ)
fun and(b: Vec3ul, res: Vec3ul) = and(res, this, b.x, b.y, b.z)
infix fun or(b: Ulong) = or(Vec3ul(), this, b, b, b)
infix fun or(b: Long) = or(Vec3ul(), this, b, b, b)
fun or(bX: Ulong, bY: Ulong, bZ: Ulong) = or(Vec3ul(), this, bX, bY, bZ)
fun or(bX: Long, bY: Long, bZ: Long) = or(Vec3ul(), this, bX, bY, bZ)
fun or(b: Vec3ul) = or(Vec3ul(), this, b.x, b.y, b.z)
infix fun orAssign(b: Ulong) = or(this, this, b, b, b)
infix fun orAssign(b: Long) = or(this, this, b, b, b)
fun orAssign(bX: Ulong, bY: Ulong, bZ: Ulong) = or(this, this, bX, bY, bZ)
fun orAssign(bX: Long, bY: Long, bZ: Long) = or(this, this, bX, bY, bZ)
infix fun orAssign(b: Vec3ul) = or(this, this, b.x, b.y, b.z)
fun or(b: Ulong, res: Vec3ul) = or(res, this, b, b, b)
fun or(b: Long, res: Vec3ul) = or(res, this, b, b, b)
fun or(bX: Ulong, bY: Ulong, bZ: Ulong, res: Vec3ul) = or(res, this, bX, bY, bZ)
fun or(bX: Long, bY: Long, bZ: Long, res: Vec3ul) = or(res, this, bX, bY, bZ)
fun or(b: Vec3ul, res: Vec3ul) = or(res, this, b.x, b.y, b.z)
infix fun xor(b: Ulong) = xor(Vec3ul(), this, b, b, b)
infix fun xor(b: Long) = xor(Vec3ul(), this, b, b, b)
fun xor(bX: Ulong, bY: Ulong, bZ: Ulong) = xor(Vec3ul(), this, bX, bY, bZ)
fun xor(bX: Long, bY: Long, bZ: Long) = xor(Vec3ul(), this, bX, bY, bZ)
fun xor(b: Vec3ul) = xor(Vec3ul(), this, b.x, b.y, b.z)
infix fun xorAssign(b: Ulong) = xor(this, this, b, b, b)
infix fun xorAssign(b: Long) = xor(this, this, b, b, b)
fun xorAssign(bX: Ulong, bY: Ulong, bZ: Ulong) = xor(this, this, bX, bY, bZ)
fun xorAssign(bX: Long, bY: Long, bZ: Long) = xor(this, this, bX, bY, bZ)
infix fun xorAssign(b: Vec3ul) = xor(this, this, b.x, b.y, b.z)
fun xor(b: Ulong, res: Vec3ul) = xor(res, this, b, b, b)
fun xor(b: Long, res: Vec3ul) = xor(res, this, b, b, b)
fun xor(bX: Ulong, bY: Ulong, bZ: Ulong, res: Vec3ul) = xor(res, this, bX, bY, bZ)
fun xor(bX: Long, bY: Long, bZ: Long, res: Vec3ul) = xor(res, this, bX, bY, bZ)
fun xor(b: Vec3ul, res: Vec3ul) = xor(res, this, b.x, b.y, b.z)
infix fun shl(b: Int) = shl(Vec3ul(), this, b, b, b)
fun shl(bX: Int, bY: Int, bZ: Int) = shl(Vec3ul(), this, bX, bY, bZ)
infix fun shlAssign(b: Int) = shl(this, this, b, b, b)
fun shlAssign(bX: Int, bY: Int, bZ: Int) = shl(this, this, bX, bY, bZ)
fun shl(b: Int, res: Vec3ul) = shl(res, this, b, b, b)
fun shl(bX: Int, bY: Int, bZ: Int, res: Vec3ul) = shl(res, this, bX, bY, bZ)
infix fun shr(b: Int) = shr(Vec3ul(), this, b, b, b)
fun shr(bX: Int, bY: Int, bZ: Int) = shr(Vec3ul(), this, bX, bY, bZ)
infix fun shrAssign(b: Int) = shr(this, this, b, b, b)
fun shrAssign(bX: Int, bY: Int, bZ: Int) = shr(this, this, bX, bY, bZ)
fun shr(b: Int, res: Vec3ul) = shr(res, this, b, b, b)
fun shr(bX: Int, bY: Int, bZ: Int, res: Vec3ul) = shr(res, this, bX, bY, bZ)
fun inv(res: Vec3ul = Vec3ul()) = inv(res, this)
fun invAssign() = inv(this, this)
// -- Generic bitwise operators --
infix fun and(b: Number) = and(Vec3ul(), this, b.L, b.L, b.L)
fun and(bX: Number, bY: Number, bZ: Number) = and(Vec3ul(), this, bX.L, bY.L, bZ.L)
fun and(b: Vec3t) = and(Vec3ul(), this, b.x.L, b.y.L, b.z.L)
infix fun andAssign(b: Number) = and(this, this, b.L, b.L, b.L)
fun andAssign(bX: Number, bY: Number, bZ: Number) = and(this, this, bX.L, bY.L, bZ.L)
infix fun andAssign(b: Vec3t) = and(this, this, b.x.L, b.y.L, b.z.L)
fun and(b: Number, res: Vec3ul) = and(res, this, b.L, b.L, b.L)
fun and(bX: Number, bY: Number, bZ: Number, res: Vec3ul) = and(res, this, bX.L, bY.L, bZ.L)
fun and(b: Vec3t, res: Vec3ul) = and(res, this, b.x.L, b.y.L, b.z.L)
infix fun or(b: Number) = or(Vec3ul(), this, b.L, b.L, b.L)
fun or(bX: Number, bY: Number, bZ: Number) = or(Vec3ul(), this, bX.L, bY.L, bZ.L)
fun or(b: Vec3t) = or(Vec3ul(), this, b.x.L, b.y.L, b.z.L)
infix fun orAssign(b: Number) = or(this, this, b.L, b.L, b.L)
fun orAssign(bX: Number, bY: Number, bZ: Number) = or(this, this, bX.L, bY.L, bZ.L)
infix fun orAssign(b: Vec3t) = or(this, this, b.x.L, b.y.L, b.z.L)
fun or(b: Number, res: Vec3ul) = or(res, this, b.L, b.L, b.L)
fun or(bX: Number, bY: Number, bZ: Number, res: Vec3ul) = or(res, this, bX.L, bY.L, bZ.L)
fun or(b: Vec3t, res: Vec3ul) = or(res, this, b.x.L, b.y.L, b.z.L)
infix fun xor(b: Number) = xor(Vec3ul(), this, b.L, b.L, b.L)
fun xor(bX: Number, bY: Number, bZ: Number) = xor(Vec3ul(), this, bX.L, bY.L, bZ.L)
fun xor(b: Vec3t) = xor(Vec3ul(), this, b.x.L, b.y.L, b.z.L)
infix fun xorAssign(b: Number) = xor(this, this, b.L, b.L, b.L)
fun xorAssign(bX: Number, bY: Number, bZ: Number) = xor(this, this, bX.L, bY.L, bZ.L)
infix fun xorAssign(b: Vec3t) = xor(this, this, b.x.L, b.y.L, b.z.L)
fun xor(b: Number, res: Vec3ul) = xor(res, this, b.L, b.L, b.L)
fun xor(bX: Number, bY: Number, bZ: Number, res: Vec3ul) = xor(res, this, bX.L, bY.L, bZ.L)
fun xor(b: Vec3t, res: Vec3ul) = xor(res, this, b.x.L, b.y.L, b.z.L)
infix fun shl(b: Number) = shl(Vec3ul(), this, b.L, b.L, b.L)
fun shl(bX: Number, bY: Number, bZ: Number) = shl(Vec3ul(), this, bX.L, bY.L, bZ.L)
infix fun shlAssign(b: Number) = shl(this, this, b.L, b.L, b.L)
fun shlAssign(bX: Number, bY: Number, bZ: Number) = shl(this, this, bX.L, bY.L, bZ.L)
fun shl(b: Number, res: Vec3ul) = shl(res, this, b.L, b.L, b.L)
fun shl(bX: Number, bY: Number, bZ: Number, res: Vec3ul) = shl(res, this, bX.L, bY.L, bZ.L)
infix fun shr(b: Number) = shr(Vec3ul(), this, b.L, b.L, b.L)
fun shr(bX: Number, bY: Number, bZ: Number) = shr(Vec3ul(), this, bX.L, bY.L, bZ.L)
infix fun shrAssign(b: Number) = shr(this, this, b.L, b.L, b.L)
fun shrAssign(bX: Number, bY: Number, bZ: Number) = shr(this, this, bX.L, bY.L, bZ.L)
fun shr(b: Number, res: Vec3ul) = shr(res, this, b.L, b.L, b.L)
fun shr(bX: Number, bY: Number, bZ: Number, res: Vec3ul) = shr(res, this, bX.L, bY.L, bZ.L)
infix fun allLessThan(ul: Ulong): Boolean = x < ul && y < ul && z < ul
infix fun anyLessThan(ul: Ulong): Boolean = x < ul || y < ul || z < ul
infix fun lessThan(ul: Ulong): Vec3bool = Vec3bool { get(it) < ul }
infix fun allLessThanEqual(ul: Ulong): Boolean = x <= ul && y <= ul && z <= ul
infix fun anyLessThanEqual(ul: Ulong): Boolean = x <= ul || y <= ul || z <= ul
infix fun lessThanEqual(ul: Ulong): Vec3bool = Vec3bool { get(it) <= ul }
infix fun allEqual(ul: Ulong): Boolean = x == ul && y == ul && z == ul
infix fun anyEqual(ul: Ulong): Boolean = x == ul || y == ul || z == ul
infix fun equal(ul: Ulong): Vec3bool = Vec3bool { get(it) == ul }
infix fun allNotEqual(ul: Ulong): Boolean = x != ul && y != ul && z != ul
infix fun anyNotEqual(ul: Ulong): Boolean = x != ul || y != ul || z != ul
infix fun notEqual(ul: Ulong): Vec3bool = Vec3bool { get(it) != ul }
infix fun allGreaterThan(ul: Ulong): Boolean = x > ul && y > ul && z > ul
infix fun anyGreaterThan(ul: Ulong): Boolean = x > ul || y > ul || z > ul
infix fun greaterThan(ul: Ulong): Vec3bool = Vec3bool { get(it) > ul }
infix fun allGreaterThanEqual(ul: Ulong): Boolean = x >= ul && y >= ul && z >= ul
infix fun anyGreaterThanEqual(ul: Ulong): Boolean = x >= ul || y >= ul || z >= ul
infix fun greaterThanEqual(ul: Ulong): Vec3bool = Vec3bool { get(it) >= ul }
infix fun allLessThan(v: Vec3ul): Boolean = x < v.x && y < v.y && z < v.z
infix fun anyLessThan(v: Vec3ul): Boolean = x < v.x || y < v.y || z < v.z
infix fun lessThan(v: Vec3ul): Vec3bool = Vec3bool { get(it) < v[it] }
infix fun allLessThanEqual(v: Vec3ul): Boolean = x <= v.x && y <= v.y && z <= v.z
infix fun anyLessThanEqual(v: Vec3ul): Boolean = x <= v.x || y <= v.y || z <= v.z
infix fun lessThanEqual(v: Vec3ul): Vec3bool = Vec3bool { get(it) <= v[it] }
infix fun allEqual(v: Vec3ul): Boolean = x == v.x && y == v.y && z == v.z
infix fun anyEqual(v: Vec3ul): Boolean = x == v.x || y == v.y || z == v.z
infix fun equal(v: Vec3ul): Vec3bool = Vec3bool { get(it) == v[it] }
infix fun allNotEqual(v: Vec3ul): Boolean = x != v.x && y != v.y && z != v.z
infix fun anyNotEqual(v: Vec3ul): Boolean = x != v.x || y != v.y || z != v.z
infix fun notEqual(v: Vec3ul): Vec3bool = Vec3bool { get(it) != v[it] }
infix fun allGreaterThan(v: Vec3ul): Boolean = x > v.x && y > v.y && z > v.z
infix fun anyGreaterThan(v: Vec3ul): Boolean = x > v.x || y > v.y || z > v.z
infix fun greaterThan(v: Vec3ul): Vec3bool = Vec3bool { get(it) > v[it] }
infix fun allGreaterThanEqual(v: Vec3ul): Boolean = x >= v.x && y >= v.y && z >= v.z
infix fun anyGreaterThanEqual(v: Vec3ul): Boolean = x >= v.x || y >= v.y || z >= v.z
infix fun greaterThanEqual(v: Vec3ul): Vec3bool = Vec3bool { get(it) >= v[it] }
companion object : op_Vec3ul {
const val length = Vec3t.length
@JvmField
val size = length * Ulong.BYTES
@JvmStatic
fun fromPointer(ptr: Ptr) = Vec3ul(memGetLong(ptr), memGetLong(ptr + Long.BYTES), memGetLong(ptr + Long.BYTES * 2))
}
override fun size() = size
override fun equals(other: Any?) = other is Vec3ul && this[0] == other[0] && this[1] == other[1] && this[2] == other[2]
override fun hashCode() = 31 * (31 * x.v.hashCode() + y.v.hashCode()) + z.v.hashCode()
@JvmOverloads
fun print(name: String = "", stream: PrintStream = System.out) = stream.print("$name$this")
@JvmOverloads
fun println(name: String = "", stream: PrintStream = System.out) = stream.println("$name$this")
override fun toString(): String = "(${x.v}, ${y.v}, ${z.v})"
}