Revision 1455,
410 bytes
checked in by bittner, 18 years ago
(diff) |
|
-
Property svn:executable set to
*
|
Line | |
---|
1 | #!/bin/sh
|
---|
2 |
|
---|
3 | PREPROCESSOR=../bin/release/preprocessor.exe
|
---|
4 |
|
---|
5 | if [ $# -ne 3 ]
|
---|
6 | then
|
---|
7 | echo "Usage:"
|
---|
8 | echo "preprocess_visibility scene_file.x3d viewcells_file.xml output_file.xml"
|
---|
9 | exit
|
---|
10 | fi
|
---|
11 |
|
---|
12 | export PATH=$PATH:../bin
|
---|
13 |
|
---|
14 | NUM_SAMPLE_RAYS=5000000
|
---|
15 |
|
---|
16 | $PREPROCESSOR -rss_vss_samples=$NUM_SAMPLE_RAYS \
|
---|
17 | -scene_filename=$1 -view_cells_filename=$2 -preprocessor_visibility_file=$3 preprocess_visibility.env
|
---|
Note: See
TracBrowser
for help on using the repository browser.