Created
June 17, 2016 11:32
-
-
Save Mizzlr/dc07a5190f1826428b710a984f401a44 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# L-System code for pythagorian tree | |
variables: A B | |
constants: [ ] + - | |
axiom: A | |
rules: (B->BB) (A->B[+A]-A) | |
angle: 60 | |
length: 20 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment