commonMain.dev.folomeev.kotgl.matrix.vectors.VecZero.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("VecZero")
package dev.folomeev.kotgl.matrix.vectors
/** A singleton of zero vector, all components of the vector are zeros. */
class VecZero private constructor() : ImmutableVec2(0f, 0f) {
override fun copyOf() = this
companion object {
internal val INSTANCE = VecZero()
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy