home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 12 / CD_ASCQ_12_0294.iso / maj / 2328 / mutate.bat < prev    next >
DOS Batch File  |  1993-12-07  |  813b  |  41 lines

  1. @echo off
  2.  
  3. rem --- L-System Parser/Mutator --- Lj Lapre -------------------------------
  4. rem
  5. rem Exec 'mutate ls-file' (without .ls extension!) to get multiple mutations 
  6. rem in an evolutionary chain. Each round one mutation is added to the ls-file.
  7. rem
  8. rem Try 'mutate lsys00'
  9. rem
  10. rem  Mother
  11. rem    │   
  12. rem  Child 
  13. rem    │   
  14. rem  Child 
  15. rem    │   
  16. rem  Child 
  17. rem    │   
  18. rem   Etc.
  19. rem
  20. rem The form on the screen will be stored in the file mutation.ls.
  21. rem
  22. rem The -s500 option is to limit the size off the l-string to 500K.
  23. rem The -p50000 option is to limit the size off the form to 50000 polygons.
  24. rem
  25.  
  26. rem The mother
  27.  
  28. lparser %1
  29. lviewer -f output
  30.  
  31. rem The Children
  32.  
  33. copy %1.ls mutation.ls
  34.  
  35. :begin
  36.  
  37. lparser -s500 -p50000 -u1 mutation
  38. lviewer -f output
  39.  
  40. goto begin
  41.