ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/util/objview.csh
Revision: 2.3
Committed: Mon Jan 4 16:37:10 1993 UTC (31 years, 3 months ago) by greg
Content type: application/x-csh
Branch: MAIN
Changes since 2.2: +1 -1 lines
Log Message:
fixed quoting of arguments

File Contents

# Content
1 #!/bin/csh -f
2 # SCCSid "$SunId$ LBL"
3 #
4 # Make a nice view of an object
5 # Arguments are scene input files
6 #
7 set tmpdir=/usr/tmp
8 set octree=$tmpdir/ov$$.oct
9 set tmpfiles="$octree"
10 onintr quit
11
12 oconv - $argv[*]:q > $octree <<_EOF_
13 void glow dim 0 0 4 .1 .1 .15 0
14 dim source background 0 0 4 0 0 1 360
15 void light bright 0 0 3 1000 1000 1000
16 bright source sun1 0 0 4 1 .2 1 5
17 bright source sun2 0 0 4 .3 1 1 5
18 bright source sun3 0 0 4 -1 -.7 1 5
19 _EOF_
20
21 set vp=`getinfo -d <$octree|rcalc -e '$1=$1-3.5*$4;$2=$2-3.5*$4;$3=$3+2.5*$4'`
22
23 rview -av .2 .2 .2 -vp $vp -vd 1 1 -.5 -vv 15 -vh 15 $octree
24
25 quit:
26 rm -f $tmpfiles
27 exit 0