All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmTest.TestVec3.kt Maven / Gradle / Ivy

There is a newer version: 0.4.5-alpha6
Show newest version
import io.kotest.matchers.types.shouldHaveSameHashCodeAs
import io.lacuna.artifex.Vec3
import kotlin.test.Test
import org.openrndr.kartifex.Vec3 as KVec3

class TestVec3 {
    @Test
    fun testHash() {
        run {
            val v3 = Vec3(0.0, 0.0, 0.0)
            val kv3 = KVec3(0.0, 0.0, 0.0)
            v3.shouldHaveSameHashCodeAs(kv3)
        }
        run {
            val v3 = Vec3(2.0, 2.1231,1.3293)
            val kv3 = KVec3(2.0, 2.1231,1.3293)
            v3.shouldHaveSameHashCodeAs(kv3)
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy