plant_2.sf 278 B

123456789101112131415161718192021
  1. #!/usr/bin/ruby
  2. include('LSystem/LSystem.sf')
  3. var rules = Hash(
  4. S => 'SS+[+S-S-S]-[-S+S+S]'
  5. );
  6. var lsys = LSystem(
  7. width: 1000,
  8. height: 1000,
  9. xoff: -600,
  10. len: 8,
  11. angle: 25,
  12. color: 'dark green',
  13. );
  14. lsys.execute('S', 5, "plant_2.png", rules);