Rename physics namespace

This commit is contained in:
oakes
2014-01-16 00:50:22 -05:00
parent cb5e5f7461
commit 23bbcfb698
2 changed files with 3 additions and 3 deletions

View File

@@ -241,7 +241,7 @@
(defn matrix-4*
([]
(Matrix4.))
([values]
([^floats values]
(Matrix4. values)))
(defmacro matrix-4
@@ -255,7 +255,7 @@
; plane
(defn plane*
[normal ^double d]
[^Vector3 normal ^double d]
(Plane. normal d))
(defmacro plane