Ignore:
Timestamp:
12/10/07 09:12:27 (17 years ago)
Author:
mattausch
Message:

added functionality for visualization

File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Vis/Preprocessing/src/QtInterface/QtGlRenderer.h

    r2543 r2560  
    112112  void SetShowRenderCost(bool); 
    113113  void SetShowPvsSizes(bool); 
     114  void SetShowPiercingRays(bool); 
    114115  void SetTopView(bool); 
    115116  void SetCutViewCells(bool); 
    116117  void SetCutScene(bool); 
    117  
    118118}; 
    119119 
     
    137137        bool mUseSpatialFilter; 
    138138        bool mShowRenderCost; 
     139        bool mShowPiercingRays; 
    139140        bool mShowRays; 
    140141 
     
    293294        void SetShowPvsSizes(bool b) { 
    294295                mShowPvsSizes = b; 
     296                updateGL(); 
     297        } 
     298 
     299        void SetShowPiercingRays(bool b) { 
     300                mShowPiercingRays = b; 
    295301                updateGL(); 
    296302        } 
Note: See TracChangeset for help on using the changeset viewer.