#!/bin/csh -f

# merge02 v1.01 Jean-Jacques Tremblay
# This script takes a sequence of field rendered images and uses the mergeField
# standalone to combine them together.  This is setup for a 1,2 environment.
# Where 'f' is the starting frame, 'fend' is the ending frame and 'finc' is the
# frame increment.  Please refer to the Field Rendering release notes dated
# August 27 rev 1.01 or later which explains how to use the post-script
# properly so this isn't necessary. (current is: March 17, 1993 rev 1.08)

set f = 1
set fend = 10
set finc = 1

while ( $f <= $fend )
	mergeField test.${f}.2.pic test.${f}.1.pic TESTRESULT.${f}.pic
	@ f += $finc
end
