]> git.rkrishnan.org Git - sicp.git/commitdiff
moved notes to pictlang/README
authorRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Wed, 1 Sep 2010 09:40:17 +0000 (15:10 +0530)
committerRamakrishnan Muthukrishnan <vu3rdd@gmail.com>
Wed, 1 Sep 2010 09:40:17 +0000 (15:10 +0530)
README
src/pictlang/README

diff --git a/README b/README
index ba463517f91923c515d8ec51d11dc1d1115fe986..e05187fc5245dd61e8ee72c9e6ac3ebd45dc10bc 100644 (file)
--- a/README
+++ b/README
@@ -6,20 +6,4 @@ for background and other information.
 
 * A note on section 2.2.4
 
-2.2.4 describes Henderson's picture language. I have implemented this as a
-separate namespace. under the 'pictlang' directory. To use this, load the
-namespaces and do:
-
-> (start-picture)
-> (show painter frame)
-
-where painter is the procedure representing the picture and frame is the
-frame on which you want to draw it. An example is the 'wave' painter
-defined in the pictlang.pictures namespace.
-
-> (show wave (make-frame (make-vect 0 0)
-                         (make-vect 1 0)
-                         (make-vect 0 1)))
-
-The implementation was directly inspired and influenced by the one in the
-JVM based Scheme implementation called JAKLD.
+See src/pictlang/README
\ No newline at end of file
index 8b870ca2dcc8e135c72b3c3a5b426498a69b7b84..38ed66e8c7089684b6840cc3e4791fed3cb4edcd 100644 (file)
@@ -1 +1,18 @@
-see the notes on the root directory.
+Section 2.2.4 describes Henderson's picture language. I have implemented
+this as a separate namespace. under the 'pictlang' directory. To use this,
+load the namespaces and do:
+
+> (start-picture)
+> (show painter frame)
+
+where painter is the procedure representing the picture and frame is the
+frame on which you want to draw it. An example is the 'wave' painter
+defined in the pictlang.pictures namespace.
+
+> (show wave (make-frame (make-vect 0 0)
+                         (make-vect 1 0)
+                         (make-vect 0 1)))
+
+The implementation was directly inspired and influenced by the one in the
+JVM based Scheme implementation called JAKLD.
+