home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 1995 January / pcw-0195.iso / polyray / dat / makeall.bat < prev    next >
DOS Batch File  |  1994-12-31  |  1KB  |  43 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.  The batch files are currently
  10. rem set to use the Symantec C++ 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 ..\texture
  19. call maketext
  20. cd ..\misc
  21. call makemisc
  22. cd ..\height
  23. call makeheig
  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 ..\uvmaps
  33. call makeuv
  34. cd ..\person
  35. polyray people.pi -o people.tga
  36. cd ..\function
  37. call makefunc
  38. cd ..\stones
  39. call makeston
  40. cd ..\animate
  41. call makeanim
  42. cd ..
  43.