commonMain.dev.folomeev.kotgl.matrix.vectors.VecUnitW.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!
@file:kotlin.jvm.JvmName("VecUnitW")
package dev.folomeev.kotgl.matrix.vectors
/** Singleton unit vector having w-component equals to 1 and all other are zeros. */
class VecUnitW private constructor() : ImmutableVec4(0f, 0f, 0f, 1f) {
override fun copyOf() = this
companion object {
internal val INSTANCE = VecUnitW()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy