home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / DOS / GRAFISCH / RAYTRACE / POLYRAY / DAT / MAKEALL.BAT < prev    next >
DOS Batch File  |  1993-04-17  |  1KB  |  49 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 ..\texture
  19. call maketext
  20. cd ..\stones
  21. call makeston
  22. cd ..\spd
  23. call makespd
  24. cd ..\misc
  25. call makemisc
  26. cd ..\height
  27. call makeheig
  28. cd ..\sweep
  29. call makeswep
  30. cd ..\poly
  31. call makepoly
  32. cd ..\gridded
  33. call makegrid
  34. cd ..\blobs
  35. call makeblob
  36. cd ..\uvmaps
  37. call makeuv
  38. cd ..\person
  39. polyray people.pi -o people.tga
  40. cd ..\animate
  41. call makeanim
  42. cd ..\function
  43. call makefunc
  44. cd ..\robarm
  45. polyray robarm.pi
  46. dta out*.tga
  47. del out*.tga
  48. cd ..
  49.