changeset 211:97b8caf66824

added continuation links
author Robert McIntyre <rlm@mit.edu>
date Thu, 09 Feb 2012 05:36:47 -0700
parents 384ed3437948
children 8e9825c38941
files org/body.org org/sense.org
diffstat 2 files changed, 28 insertions(+), 14 deletions(-) [+]
line wrap: on
line diff
     1.1 --- a/org/body.org	Thu Feb 09 05:14:58 2012 -0700
     1.2 +++ b/org/body.org	Thu Feb 09 05:36:47 2012 -0700
     1.3 @@ -558,7 +558,6 @@
     1.4  
     1.5  * Source 
     1.6  
     1.7 -
     1.8  - [[../src/cortex/body.clj][cortex.body]]
     1.9  - [[../src/cortex/test/body.clj][cortex.test.body]]
    1.10  - [[../assets/Models/test-creature/hand.blend][hand.blend]]
    1.11 @@ -566,7 +565,11 @@
    1.12  - [[../assets/Models/test-creature/worm.blend][worm.blend]]
    1.13    - [[../assets/Models/test-creature/retina-small.png][UV-map-1]]
    1.14    - [[../assets/Models/test-creature/tip.png][UV-map-2]]
    1.15 -#+html: <ul> <li> <a href="../org/body.org">This org file.</a> </li> </ul>
    1.16 +#+html: <ul> <li> <a href="../org/body.org">This org file</a> </li> </ul>
    1.17 +
    1.18 +* Next 
    1.19 +The body I have made here exists without any senses or effectors. In
    1.20 +the [[./vision.org][next post]], I'll give the creature eyes.
    1.21  
    1.22  * COMMENT Generate Source
    1.23  #+begin_src clojure :tangle ../src/cortex/body.clj
     2.1 --- a/org/sense.org	Thu Feb 09 05:14:58 2012 -0700
     2.2 +++ b/org/sense.org	Thu Feb 09 05:36:47 2012 -0700
     2.3 @@ -418,13 +418,6 @@
     2.4  
     2.5  #+name: test
     2.6  #+begin_src clojure 
     2.7 -(ns cortex.test.sense
     2.8 -  (:use (cortex world util sense vision))
     2.9 -  (:import
    2.10 -   java.io.File
    2.11 -   (com.jme3.math Vector3f ColorRGBA)
    2.12 -   (com.aurellem.capture RatchetTimer Capture)))
    2.13 -
    2.14  (defn test-bind-sense
    2.15    "Show a camera that stays in the same relative position to a blue
    2.16    cube."
    2.17 @@ -507,9 +500,8 @@
    2.18  ffmpeg -r 60 -b 9000k -i bind-sense/%07d.png bind-sense.ogg
    2.19  #+end_src
    2.20  
    2.21 -* Bookkeeping
    2.22 -Here is the header for this namespace, included for completness.
    2.23 -#+name: header
    2.24 +* Headers
    2.25 +#+name: sense-header
    2.26  #+begin_src clojure
    2.27  (ns cortex.sense
    2.28    "Here are functions useful in the construction of two or more
    2.29 @@ -529,13 +521,31 @@
    2.30    (:import (javax.swing JPanel JFrame SwingUtilities)))
    2.31  #+end_src
    2.32  
    2.33 +#+name: test-header
    2.34 +#+begin_src clojure
    2.35 +(ns cortex.test.sense
    2.36 +  (:use (cortex world util sense vision))
    2.37 +  (:import
    2.38 +   java.io.File
    2.39 +   (com.jme3.math Vector3f ColorRGBA)
    2.40 +   (com.aurellem.capture RatchetTimer Capture)))
    2.41 +#+end_src
    2.42 +
    2.43  * Source Listing
    2.44 -  Full source: [[../src/cortex/sense.clj][sense.clj]]
    2.45 +  - [[../src/cortex/sense.clj][cortex.sense]]
    2.46 +  - [[../src/cortex/test/sense.clj][cortex.test.sense]]
    2.47 +  - [[../assets/Models/subtitles/subtitles.blend][subtitles.blend]]
    2.48 +    - [[../assets/Models/subtitles/Lake_CraterLake03_sm.hdr][subtitles reflection map]]
    2.49 +#+html: <ul> <li> <a href="../org/sense.org">This org file</a> </li> </ul>
    2.50 +
    2.51 +* Next
    2.52 +Now that some of the preliminaries are out of the way, in the [[./body.org][next
    2.53 +post]] I'll create a simulated body.
    2.54  
    2.55  
    2.56  * COMMENT generate source
    2.57  #+begin_src clojure :tangle ../src/cortex/sense.clj
    2.58 -<<header>>
    2.59 +<<sense-header>>
    2.60  <<blender-1>>
    2.61  <<blender-2>>
    2.62  <<topology-1>>
    2.63 @@ -546,5 +556,6 @@
    2.64  #+end_src
    2.65  
    2.66  #+begin_src clojure :tangle ../src/cortex/test/sense.clj
    2.67 +<<test-header>>
    2.68  <<test>>
    2.69  #+end_src