jvmTest.dev.folomeev.kotgl.matrix.matrices.Mat2TestJvm.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotgl-matrix Show documentation
Show all versions of kotgl-matrix Show documentation
Multiplatform vectors and matrices library for WebGL and OpenGL.
The newest version!
package dev.folomeev.kotgl.matrix.matrices
import kotlin.test.Test
import kotlin.test.assertEquals
class Mat2TestJvm {
@Test
fun mat2_toString() = assertEquals(
"((1.0, 2.0),\n (3.0, 4.0))",
mat2(1f, 2f, 3f, 4f).toString()
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy