home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / maj / 2328 / bop07.ls < prev    next >
Text File  |  1993-11-22  |  338b  |  25 lines

  1. # --- L-System Parser/Mutator --- Lj Lapre ----------------------------------
  2. #
  3. # The elongation rule from page 130 of ABOP :
  4. #
  5. # F(a) : * -> F(a*R)
  6. #
  7. # translates into :
  8. #
  9. # F='(R)F'(1/R)
  10. #
  11. 15
  12. 45
  13. 20
  14. #
  15. &(90)+(90)a
  16. #
  17. a=F[+cx]Fb
  18. b=F[-cy]Fa
  19. #            apical delay 
  20. x=a
  21. y=b
  22. #
  23. F='(1.36)F'(.735)    # internode elongation rate
  24. @
  25.