Mercurial > cortex
diff org/sense.org @ 211:97b8caf66824
added continuation links
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Thu, 09 Feb 2012 05:36:47 -0700 |
parents | d5c597a7aed4 |
children | f283c62bd212 |
line wrap: on
line diff
1.1 --- a/org/sense.org Thu Feb 09 05:14:58 2012 -0700 1.2 +++ b/org/sense.org Thu Feb 09 05:36:47 2012 -0700 1.3 @@ -418,13 +418,6 @@ 1.4 1.5 #+name: test 1.6 #+begin_src clojure 1.7 -(ns cortex.test.sense 1.8 - (:use (cortex world util sense vision)) 1.9 - (:import 1.10 - java.io.File 1.11 - (com.jme3.math Vector3f ColorRGBA) 1.12 - (com.aurellem.capture RatchetTimer Capture))) 1.13 - 1.14 (defn test-bind-sense 1.15 "Show a camera that stays in the same relative position to a blue 1.16 cube." 1.17 @@ -507,9 +500,8 @@ 1.18 ffmpeg -r 60 -b 9000k -i bind-sense/%07d.png bind-sense.ogg 1.19 #+end_src 1.20 1.21 -* Bookkeeping 1.22 -Here is the header for this namespace, included for completness. 1.23 -#+name: header 1.24 +* Headers 1.25 +#+name: sense-header 1.26 #+begin_src clojure 1.27 (ns cortex.sense 1.28 "Here are functions useful in the construction of two or more 1.29 @@ -529,13 +521,31 @@ 1.30 (:import (javax.swing JPanel JFrame SwingUtilities))) 1.31 #+end_src 1.32 1.33 +#+name: test-header 1.34 +#+begin_src clojure 1.35 +(ns cortex.test.sense 1.36 + (:use (cortex world util sense vision)) 1.37 + (:import 1.38 + java.io.File 1.39 + (com.jme3.math Vector3f ColorRGBA) 1.40 + (com.aurellem.capture RatchetTimer Capture))) 1.41 +#+end_src 1.42 + 1.43 * Source Listing 1.44 - Full source: [[../src/cortex/sense.clj][sense.clj]] 1.45 + - [[../src/cortex/sense.clj][cortex.sense]] 1.46 + - [[../src/cortex/test/sense.clj][cortex.test.sense]] 1.47 + - [[../assets/Models/subtitles/subtitles.blend][subtitles.blend]] 1.48 + - [[../assets/Models/subtitles/Lake_CraterLake03_sm.hdr][subtitles reflection map]] 1.49 +#+html: <ul> <li> <a href="../org/sense.org">This org file</a> </li> </ul> 1.50 + 1.51 +* Next 1.52 +Now that some of the preliminaries are out of the way, in the [[./body.org][next 1.53 +post]] I'll create a simulated body. 1.54 1.55 1.56 * COMMENT generate source 1.57 #+begin_src clojure :tangle ../src/cortex/sense.clj 1.58 -<<header>> 1.59 +<<sense-header>> 1.60 <<blender-1>> 1.61 <<blender-2>> 1.62 <<topology-1>> 1.63 @@ -546,5 +556,6 @@ 1.64 #+end_src 1.65 1.66 #+begin_src clojure :tangle ../src/cortex/test/sense.clj 1.67 +<<test-header>> 1.68 <<test>> 1.69 #+end_src