summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <yuv.adm@gmail.com>2012-05-18 11:19:15 +0300
committerYuval Adam <yuv.adm@gmail.com>2012-05-18 11:19:15 +0300
commit96362954992abcc1686928a4075426079584905b (patch)
tree4a25943e9763863cf44fd42ad6780d24cfee5225
parent7d8c903ff7800d25108930c2ea4e64a62f1cd03f (diff)
useless docs
-rw-r--r--lsys.js7
1 files changed, 0 insertions, 7 deletions
diff --git a/lsys.js b/lsys.js
index de94df3..8f7ec49 100644
--- a/lsys.js
+++ b/lsys.js
@@ -1,10 +1,3 @@
-// L-System as defined in
-// http://en.wikipedia.org/wiki/L-system
-
-// Example usage:
-// lsys = LSystem('F', { 'F' : 'F-F+FF' });
-// tree = lsys.iterate(2)
-
function LSystem(axiom, rules) {
this.axiom = axiom;
this.rules = rules;