ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/objview.csh
Revision: 1.1
Committed: Wed Apr 24 18:27:10 1991 UTC (32 years, 11 months ago) by greg
Content type: application/x-csh
Branch: MAIN
Log Message:
Initial revision

File Contents

# Content
1 #!/bin/csh -f
2 # SCCSid "$SunId$ LBL"
3 #
4 # Make a nice view of an object
5 # Standard input is description made to fit in unit cube in positive quadrant
6 #
7 set objdir=/usr/local/lib/ray/lib
8 set tmpdir=/usr/tmp
9 set vw="-vp 3 3 3 -vd -1 -1 -1 -vh 20 -vv 20"
10 set rview="rview -av .2 .2 .2 $vw $*"
11 set octree=$tmpdir/ov$$.oct
12 set tmpfiles="$octree"
13 onintr quit
14
15 oconv $objdir/testroom - > $octree
16 $rview $octree
17
18 quit:
19 rm -f $tmpfiles
20 exit 0