Skip to content

Commit d1663cd

Browse files
committed
v0.9.9.0.10
1 parent 7c550b5 commit d1663cd

File tree

2 files changed

+10
-9
lines changed

2 files changed

+10
-9
lines changed

src/main/kotlin/glm_/Clojure.kt

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package glm_
2+
3+
class Clojure {
4+
5+
companion object {
6+
@JvmStatic
7+
fun frustum(left: Float, right: Float, bottom: Float, top: Float, near: Float, far: Float) = glm.frustum(left, right, bottom, top, near, far)
8+
}
9+
}

src/main/kotlin/glm_/glm.kt

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -140,20 +140,12 @@ class Java {
140140
}
141141
}
142142

143-
class Clojure {
144-
145-
companion object {
146-
@JvmStatic
147-
fun frustum(left: Float, right: Float, bottom: Float, top: Float, near: Float, far: Float) = glm.frustum(left, right, bottom, top, near, far)
148-
}
149-
}
150-
151143
typealias uint = Int
152144
typealias ulong = Long
153145

154146
val GLM_VERSION_MAJOR = 0
155147
val GLM_VERSION_MINOR = 9
156148
val GLM_VERSION_PATCH = 9
157149
val GLM_VERSION_REVISION = 0
158-
val GLM_VERSION_BUILD = 9
150+
val GLM_VERSION_BUILD = 10
159151
val GLM_VERSION = GLM_VERSION_MAJOR * 1_000 + GLM_VERSION_MINOR * 100 + GLM_VERSION_PATCH * 10 + GLM_VERSION_REVISION + GLM_VERSION_BUILD / 10f

0 commit comments

Comments
 (0)