home *** CD-ROM | disk | FTP | other *** search
/ PC/CD FUN 24 / cdimage.iso / dos / POV / MORAY2 / RAW / MAKEUDO.BAT < prev   
Encoding:
DOS Batch File  |  1995-12-29  |  832 b   |  30 lines

  1. @echo off
  2. if "%1"==""  goto usage
  3. if not exist ..\utils\3dto3d.exe goto noexe
  4. ..\utils\3dto3d.exe /e20 /t3 /o2 %1.raw
  5. copy %1.udo ..\UDO
  6. del %1.udo
  7. copy %1.inc ..\povscn
  8. del %1.inc
  9. ..\utils\3dto3d.exe /e20 /t3 /o3 %1.raw
  10. del %1.udo
  11. copy %1.inc ..\polyscn
  12. del %1.inc
  13. goto end
  14. :usage
  15. echo.
  16. echo MAKEUDO   (C) Copyright SoftTronics, Lutz + Kretzschmar
  17. echo Usage: makeudo file
  18. echo                where file may not have an extension.
  19. echo                This batch will then create a UDO and INC file for
  20. echo                POV-Ray and Polyray in their respective directories. 
  21. echo                This only works with the standard distribution setup.
  22. echo.
  23. goto end
  24. :noexe
  25. echo MAKEUDO   (C) Copyright SoftTronics, Lutz + Kretzschmar
  26. echo The 3DTO3D.EXE file was not found in ..\UTILS.
  27. echo.
  28. echo 
  29. :end
  30.