source: trunk/VUT/GtpVisibilityPreprocessor/src/default.env @ 370

Revision 370, 2.6 KB checked in by mattausch, 19 years ago (diff)

fixed specular bug in trees
added batched query manager
added t information to ray bsp leaves

Line 
1#############################################################################
2# ERS default configuration file
3# Jiri Bittner 2003
4#############################################################################
5
6Scene {
7
8#       filename glasgow1.x3d
9#       filename vienna.x3d
10#       filename ../data/vienna/vienna-simple.x3d
11#       filename ../data/vienna/vienna-buildings.x3d
12# filename ../data/vienna/viewcells-25-sel.x3d
13# filename ../data/atlanta/atlanta2.x3d
14#       filename ../data/soda/soda.dat
15filename ../data/soda/soda5.dat
16}
17
18Limits {
19
20       threshold        1e-6
21       small            1e-6
22       infinity         1e9
23}
24
25Unigraphics {
26                meshGrouping 1
27}
28
29KdTree {
30        sahUseFaces true
31        Termination {
32                minCost 2
33                maxDepth 18
34                maxCostRatio 0.9
35                ct_div_ci 0.5
36        }
37
38#       splitMethod spatialMedian
39        splitMethod SAH
40        splitBorder 0.01
41}
42
43MeshKdTree {
44        Termination {
45                minCost 4
46                maxDepth 18
47                maxCostRatio 0.9
48                ct_div_ci 0.5
49        }
50
51#       splitMethod spatialMedian
52        splitMethod SAH
53        splitBorder 0.01
54}
55
56
57Sampling {
58        totalSamples 100000000
59        samplesPerPass  3
60}
61
62ViewCells {
63        #hierarchy kdTree
64        hierarchy bspTree
65        # hierarchy sceneDependent
66       
67        height 5.0
68        maxViewCells 0
69       
70        minPvsDif 100
71#       maxPvsSize 200
72       
73#       filename ../data/atlanta/atlanta_viewcells_large.x3d
74        filename ../data/vienna/viewcells-25-sel.x3d
75#       filename ../data/vienna/viewcells-25.x3d
76#       filename ../data/vienna/viewcells-large-sel.x3d
77}
78
79BspTree {
80        Construction {
81                input fromRays
82        #       input fromViewCells
83        #       input fromSceneGeometry
84                samples 10000
85                sideTolerance 0.005
86        }
87
88
89        # random polygon       = 1
90        # axis aligned         = 2
91        # least splits         = 4
92        # balanced polygons    = 8
93        # balanced view cells  = 16
94        # largest polygon area = 32
95        # vertical axis        = 64
96        # blocked rays         = 128
97        # least ray splits     = 256
98        # balanced rays        = 512
99        # pvs                  = 1024
100
101        # least splits + balanced polygons
102        #splitPlaneStrategy 12
103       
104        #axis aligned + vertical axis
105        #splitPlaneStrategy 66
106       
107        # axis aligned + balanced view cells
108        # splitPlaneStrategy 18
109       
110        # largest polygon area
111        #splitPlaneStrategy 32
112       
113        # axus aligned + balanced polygons
114        #splitPlaneStrategy 72
115       
116        # axis aligned + blocked rays
117        #splitPlaneStrategy 130
118       
119        #splitPlaneStrategy 384
120        #splitPlaneStrategy 130
121       
122        splitPlaneStrategy 1024
123       
124        maxCandidates 80
125       
126        Termination {
127                # autopartition
128                maxRays 200
129                maxPolygons 5
130                maxDepth 100
131               
132                # axis aligned splits
133                AxisAligned {
134                        maxPolys 5000
135                        maxRays 5000
136                        maxObjects 2000
137                        maxCostRatio 0.9
138                        ct_div_ci 0.5
139                }
140        }
141       
142        AxisAligned {
143                splitBorder 0.01
144        }
145       
146        PostProcessing {
147                samples 100000
148        }
149               
150        # if split polys are stored for visualization
151        storeSplitPolys false
152        # x3d visualization of the split planes
153        exportSplits true
154}
Note: See TracBrowser for help on using the repository browser.