Improve body functions and allow graphics macros to work on both the screen and the objects themselves

This commit is contained in:
oakes
2014-01-17 18:11:37 -05:00
parent 6b1eda86c8
commit b703780089
5 changed files with 69 additions and 43 deletions

View File

@@ -79,7 +79,7 @@
:uniform-x (.uniformX cell)
:uniform-y (.uniformY cell)
:row (.row cell)
(throw (Exception. (str "The keyword " method " is not supported."))))
(u/throw-key-not-found method))
(apply cell! cell rest-args))
cell))
@@ -99,7 +99,7 @@
(keyword? child)
(case child
:row (.row ^Table (:object parent))
(throw (Exception. (str "The keyword " child " is not supported."))))))
(u/throw-key-not-found child))))
(defn ^:private create-tree-node
[child]