home *** CD-ROM | disk | FTP | other *** search
/ Frozen Fish 2: PC / frozenfish_august_1995.bin / bbs / pictures / danielsn.lha / Danielsen / f3.adpro < prev    next >
Text File  |  1993-01-12  |  794b  |  54 lines

  1. /* f3.adpro 
  2.  
  3. make3d - combine left and right images into a interlaced 3d DCTV image.
  4.  
  5. by Mike Danielsen
  6.  
  7. */
  8.  
  9. address "ADPro"
  10.  
  11. options results
  12.  
  13. getfile '"Select left image file"'
  14. if RC ~= 0 then exit
  15. leftfile = ADPRO_RESULT
  16.  
  17. getfile '"Select right image file"'
  18. if RC ~= 0 then exit
  19. rightfile = ADPRO_RESULT
  20.  
  21. lformat "IFF"
  22. sformat "IFF"
  23.  
  24. load leftfile
  25. if RC ~= 0 then do
  26.    okay1 "Error Loading" leftfile
  27.    exit
  28. end
  29. operator "rendered_to_raw"
  30. save leftfile "raw"
  31.  
  32. load rightfile
  33. if RC ~= 0 then do
  34.    okay1 "Error Loading" rightfile
  35.    exit
  36. end
  37. operator "rendered_to_raw"
  38. save rightfile "raw"
  39.  
  40. dither 0
  41. render_type 16
  42. screen_type 27
  43.  
  44. lformat "BACKDROP"
  45. load "x" 736 482 "COLOR"
  46. lformat "IFF"
  47. load leftfile 0 0 100 
  48. load rightfile 0 241 100 
  49.  
  50. operator "interlace"
  51. operator "DCTV"
  52.  
  53. adpro_display
  54.