Changeset 326


Ignore:
Timestamp:
10/13/05 13:12:56 (19 years ago)
Author:
mattausch
Message:

rays containers are part of bsp subdivision

Location:
trunk/VUT
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/VUT/GtpVisibilityPreprocessor/scripts/default.env

    r322 r326  
    101101        #splitPlaneStrategy 72 
    102102         
    103         splitPlaneStrategy 1 
     103        splitPlaneStrategy 66 
    104104         
    105105        maxCandidates 50 
    106106         
    107107        Termination { 
    108                 maxPolysForAxisAligned 1000 
    109                 maxPolygons 50 
     108                maxPolysForAxisAligned 100 
     109                maxPolygons 20 
    110110                maxDepth 100 
    111111        } 
  • trunk/VUT/GtpVisibilityPreprocessor/src/ViewCellBsp.cpp

    r325 r326  
    619619                DEL_PTR(tData.mPolygons); 
    620620 
    621                 if (tData.mRays()) 
     621                if (tData.mRays) 
    622622                        CLEAR_CONTAINER(*tData.mRays); 
    623623                DEL_PTR(tData.mRays); 
     
    749749                                                        coincident,  
    750750                                                        splits,  
    751                                                         mStoreSplitPolys); 
     751                                                        sStoreSplitPolys); 
    752752         
    753753        mStat.splits += splits; 
  • trunk/VUT/GtpVisibilityPreprocessor/src/default.env

    r316 r326  
    5656 
    5757Sampling { 
    58         totalSamples    200000 
    59         samplesPerPass  10 
     58        totalSamples    100 
     59        samplesPerPass  20 
    6060} 
    6161 
    6262ViewCells { 
    6363        hierarchyType bspTree 
    64         height 7.0 
    65         maxViewCells 20 
     64        height 5.0 
     65        maxViewCells 0 
    6666        #hierarchyType kdTree 
    6767        #hierarchyType sceneDependent 
    68         filename ../data/atlanta/atlanta_viewcells_large.x3d 
     68#       filename ../data/atlanta/atlanta_viewcells_large.x3d 
    6969#       filename ../data/vienna/viewcells-25-sel.x3d 
    70 #       filename ../data/vienna/viewcells-25.x3d 
     70        filename ../data/vienna/viewcells-25.x3d 
    7171#       filename ../data/vienna/viewcells-large-sel.x3d 
    7272} 
     
    7474BspTree { 
    7575#       constructionMethod fromRays 
    76         constructionMethod fromViewCells 
    77 #       constructionMethod fromSceneGeometry 
     76#       constructionMethod fromViewCells 
     77        constructionMethod fromSceneGeometry 
    7878 
    79         # next polygon         = 1 
     79        # random polygon       = 1 
    8080        # axis aligned         = 2 
    8181        # least splits         = 4 
     
    8484        # largest polygon area = 32 
    8585        # vertical axis        = 64 
     86        # blocked rays         = 128 
    8687         
    87         splitPlaneStrategy 66 
    8888        # least splits + balanced polygons 
    8989        #splitPlaneStrategy 12 
     
    101101        #splitPlaneStrategy 72 
    102102         
     103        splitPlaneStrategy 66 
     104         
    103105        maxCandidates 50 
    104106         
    105107        Termination { 
    106108                maxPolysForAxisAligned 100 
    107                 maxPolygons 0 
    108                 maxDepth 200 
     109                maxPolygons 20 
     110                maxDepth 100 
    109111        } 
     112        # if split polys are stored for visualization 
     113        storeSplitPolys false 
     114        # x3d visualization of the split planes 
     115        exportSplits true 
    110116} 
Note: See TracChangeset for help on using the changeset viewer.