Mercurial > cortex
comparison org/util.org @ 526:01934317b25b
changes from conference.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Mon, 21 Apr 2014 02:11:29 -0400 |
parents | 763d13f77e03 |
children |
comparison
equal
deleted
inserted
replaced
523:90b236381642 | 526:01934317b25b |
---|---|
56 (jme-jars)))))) | 56 (jme-jars)))))) |
57 | 57 |
58 (defn mega-import-jme3 | 58 (defn mega-import-jme3 |
59 "Import ALL the jme classes. For REPL use." | 59 "Import ALL the jme classes. For REPL use." |
60 [] | 60 [] |
61 (import com.aurellem.capture.IsoTimer) | |
61 (dorun | 62 (dorun |
62 (import com.aurellem.capture.IsoTimer) | |
63 (map (comp permissive-import symbol) (jme-class-names)))) | 63 (map (comp permissive-import symbol) (jme-class-names)))) |
64 #+end_src | 64 #+end_src |
65 | 65 |
66 jMonkeyEngine3 has a plethora of classes which can be overwhelming to | 66 jMonkeyEngine3 has a plethora of classes which can be overwhelming to |
67 manage. This code uses reflection to import all of them. Once I'm | 67 manage. This code uses reflection to import all of them. Once I'm |