home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / p / ply15dat.zip / MAKEALL.BAT < prev    next >
DOS Batch File  |  1992-11-07  |  1KB  |  47 lines

  1. rem
  2. rem Batch file to process all of the Polyray data files.
  3. rem 
  4. rem Processing all of the data files can take one or more days, depending
  5. rem on the speed of your processor.  If you want a quick look, then
  6. rem move to a subdirectory and look for an appropriate test image to render.
  7. rem
  8. rem In a couple of cases, a C compiler is necessary to generate data,
  9. rem in particular for the height field and SPD examples.  The batch files
  10. rem are currently set to use the Zortech compiler, however a simple change
  11. rem of the command line should be all you need for another compiler.
  12. rem
  13. rem In order to generated the animations you will need the program 'dta' on
  14. rem your path.
  15. rem
  16. cd simple
  17. call makesimp
  18. cd ..\height
  19. call makeheig
  20. cd ..\misc
  21. call makemisc
  22. cd ..\texture
  23. call maketext
  24. cd ..\sweep
  25. call makeswep
  26. cd ..\poly
  27. call makepoly
  28. cd ..\gridded
  29. call makegrid
  30. cd ..\blobs
  31. call makeblob
  32. cd ..\stones
  33. call makeston
  34. cd ..\person
  35. polyray people.pi -o people.tga
  36. cd ..\spd
  37. call makespd
  38. cd ..\animate
  39. call makeanim
  40. cd ..\function
  41. call makefunc
  42. cd ..\robarm
  43. polyray robarm.pi
  44. dta out*.tga
  45. del out*.tga
  46. cd ..
  47.