Ignore:
Timestamp:
04/01/07 00:02:16 (17 years ago)
Author:
szirmay
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Illum/pathmap/PathMap.cpp

    r2212 r2304  
    3131bool    segmentMeshes = false; 
    3232bool    computePRM = false; 
     33bool    noAtlasGen = false; 
     34bool    uniformSampling = false; 
    3335 
    3436unsigned int nEntryPoints = 4096; 
     
    114116                segmentMeshes, 
    115117                computePRM, 
     118                uniformSampling, 
     119                !noAtlasGen, 
    116120                nEntryPoints, 
    117121                nClusters, 
     
    157161                { 
    158162                        txtHelper.DrawFormattedTextLine( pathMapEffect->getCurrentMethodName()); 
    159 //                      txtHelper.DrawFormattedTextLine( pathMapEffect->getWeightsString()); 
     163                        txtHelper.DrawFormattedTextLine( pathMapEffect->getCruiseLoop()); 
    160164                } 
    161165 
     
    279283                        segmentMeshes, 
    280284                        computePRM, 
     285                        uniformSampling, 
     286                        !noAtlasGen, 
    281287                        nEntryPoints, 
    282288                        nClusters, 
     
    394400                        switch(toki[1]) 
    395401                        { 
     402                        case 'A' : 
     403                                noAtlasGen = true; 
     404                                break; 
     405                        case 'U' : 
     406                                uniformSampling = true; 
     407                                break; 
    396408                        case 'D' : 
    397409                                toki = strtok(NULL, " "); 
Note: See TracChangeset for help on using the changeset viewer.