author | francesco-ST <francesco.abbate@st.com> | 2010年11月04日 17:03:38 +0100 |
---|---|---|
committer | francesco-ST <francesco.abbate@st.com> | 2010年11月04日 17:03:38 +0100 |
commit | cf8aea387d1410c2b4198f7e06e45b4cd1bfe209 (patch) | |
tree | 43538aea5e80f89afbd37636e694eb70f4f45616 /examples/fractals.lua | |
parent | 37f3b5bf5f48bd060bf72e01e7086e2fc2b348ed (diff) | |
download | gsl-shell-cf8aea387d1410c2b4198f7e06e45b4cd1bfe209.tar.gz |
-rw-r--r-- | examples/fractals.lua | 10 |
diff --git a/examples/fractals.lua b/examples/fractals.lua index be0fdf17..9f32717f 100644 --- a/examples/fractals.lua +++ b/examples/fractals.lua @@ -187,7 +187,7 @@ function demo3ter(n) return pl end -function demo3teri(n) +function demo4(n) n = n and n or 10 local col, coln @@ -258,6 +258,8 @@ function demo3q() return pl end -print 'demo1() - Von Koch\'s curve' -print 'demo2() - Levy\'s C curve' -print 'demo3() - Pythagorean Tree' +print([[ +demo1() - Von Koch's curve +demo2() - Levy's C curve +demo3() - Pythagorean Tree (symmetric) +demo4() - Pythagorean Tree (asymmetric)]]) |