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

  1. @echo off
  2.  
  3. rem --- L-System Parser/Mutator --- Lj Lapre -------------------------------
  4. rem
  5. rem Exec 'distant ls-file' (without .ls extension!) to get multiple children
  6. rem from a mother form. Each child is 10 generations removed from the mother.
  7. rem
  8. rem Try 'distant lsys00'
  9. rem
  10. rem               Mother
  11. rem    ┌─────┬─────┬┴────┬─────┬─────┬──────┐
  12. rem    │     │     │     │     │     │      │
  13. rem    │     │     │     │     │     │         │
  14. rem    │     │     │     │     │     │
  15. rem  Child Child Child Child Child Child   Etc.
  16. rem
  17. rem The form on the screen will be stored in the file mutation.ls.
  18. rem
  19. rem The -s500 option is to limit the size off the l-string to 500K.
  20. rem The -p50000 option is to limit the size off the form to 50000 polygons.
  21. rem
  22.  
  23. rem The mother
  24.  
  25. lparser %1
  26. lviewer -f output
  27.  
  28. rem The children
  29.  
  30. :begin
  31.  
  32. lparser -s500 -p50000 -u5 %1
  33. lviewer -f output
  34.  
  35. goto begin
  36.