Ignore:
Timestamp:
06/12/08 01:09:23 (16 years ago)
Author:
mattausch
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • GTP/trunk/App/Demos/Vis/CHC_revisited/Material.cpp

    r2751 r2755  
    88{ 
    99        return RgbColor(a + Random(b), a + Random(b), a + Random(b)); 
     10} 
     11 
     12 
     13  
     14Material::Material(): mId(0) 
     15{} 
     16   
     17 
     18Material::Material(const int id): mId(id) 
     19{ 
     20} 
     21 
     22 
     23Material::Material(const RgbColor &color):mDiffuseColor(color), 
     24mAmbientColor(color), 
     25mSpecularColor(0,0,0), mId(0) 
     26{ 
     27} 
     28 
     29 
     30int Material::GetId() const 
     31{ 
     32        return mId; 
    1033} 
    1134 
Note: See TracChangeset for help on using the changeset viewer.