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