home *** CD-ROM | disk | FTP | other *** search
- /* f3.adpro
-
- make3d - combine left and right images into a interlaced 3d DCTV image.
-
- by Mike Danielsen
-
- */
-
- address "ADPro"
-
- options results
-
- getfile '"Select left image file"'
- if RC ~= 0 then exit
- leftfile = ADPRO_RESULT
-
- getfile '"Select right image file"'
- if RC ~= 0 then exit
- rightfile = ADPRO_RESULT
-
- lformat "IFF"
- sformat "IFF"
-
- load leftfile
- if RC ~= 0 then do
- okay1 "Error Loading" leftfile
- exit
- end
- operator "rendered_to_raw"
- save leftfile "raw"
-
- load rightfile
- if RC ~= 0 then do
- okay1 "Error Loading" rightfile
- exit
- end
- operator "rendered_to_raw"
- save rightfile "raw"
-
- dither 0
- render_type 16
- screen_type 27
-
- lformat "BACKDROP"
- load "x" 736 482 "COLOR"
- lformat "IFF"
- load leftfile 0 0 100
- load rightfile 0 241 100
-
- operator "interlace"
- operator "DCTV"
-
- adpro_display
-