Ignore:
Timestamp:
03/05/07 18:05:16 (17 years ago)
Author:
szirmay
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/Lib/Illum/IllumModule/OgreIllumModule/include/OgreIlluminationManager.h

    r2185 r2189  
    8484        unsigned int focusingMapSize; 
    8585        unsigned int shadowMapSize; 
     86        float areaLightRadius; 
    8687        bool useLISPSM; 
    8788        bool useVSM; 
     
    347348                this->pathMapEntryPoints.push_back(p); 
    348349        } 
     350        std::vector<PathMapEntryPoint>& getPathMapEntryPoints() 
     351        { 
     352                return pathMapEntryPoints; 
     353        } 
    349354        void addPathMapClusterLength(unsigned int l) 
    350355        { 
    351356                this->pathMapClusterLengths.push_back(l); 
    352357        } 
     358        unsigned int getPathMapClusterLengthsSize() 
     359        { 
     360                return this->pathMapClusterLengths.size(); 
     361        } 
     362        unsigned int getPathMapClusterLength(unsigned int index) 
     363        { 
     364                return pathMapClusterLengths.at(index); 
     365        } 
     366        float getAreaLightRadius(){return areaLightRadius;} 
     367        void setAreaLigtRadius(float radius){areaLightRadius = radius;} 
    353368}; 
    354369 
Note: See TracChangeset for help on using the changeset viewer.