Mercurial > cortex
view org/body.org @ 0:92f8d83b5d0b
initial import: I've made hearing and vision, and am working on touch.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Sun, 16 Oct 2011 05:12:19 -0700 |
parents | |
children | 50c92af2018e |
line wrap: on
line source
1 #+title: The BODY!!!2 #+author: Robert McIntyre3 #+email: rlm@mit.edu4 #+MATHJAX: align:"left" mathml:t path:"../aurellem/src/MathJax/MathJax.js"5 #+STYLE: <link rel="stylesheet" type="text/css" href="../aurellem/src/css/aurellem.css"/>6 #+BABEL: :exports both :noweb yes :cache no :mkdirp yes7 #+INCLUDE: ../aurellem/src/templates/level-0.org8 #+description: Simulating a body (movement, tough, propioception) in jMonkeyEngine3.11 * Body !13 #+srcname: body-main14 #+begin_src clojure15 (ns body.body)16 (use 'cortex.world)17 (use 'cortex.import)18 (use 'clojure.contrib.def)19 (cortex.import/mega-import-jme3)20 (rlm.rlm-commands/help)24 #+end_src33 * COMMENT generate Source.34 #+begin_src clojure :tangle ../src/body/body.clj35 <<body-main>>36 #+end_src