de.bixilon.kotlinglm.Clojure.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
class Clojure {
companion object {
@JvmStatic
fun frustum(left: Float, right: Float, bottom: Float, top: Float, near: Float, far: Float) = GLM.frustum(left, right, bottom, top, near, far)
}
}