Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 20, 2006, 12:48:50 AM (18 years ago)
Author:
bensch
Message:

init

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/gui/src/lib/graphics/importer/material.cc

    r8583 r8596  
    5252Material& Material::operator=(const Material& material)
    5353{
    54   this->setIllum(material.illumModel);
    55   this->setDiffuseColor(material.diffuseColor());
     54  this->illumModel = material.illumModel;
     55  this->diffuse = material.diffuse;
    5656  this->specular = material.specular;
    5757  this->ambient = material.ambient;
    58   this->setShininess(material.shininess);
     58  this->shininess = material.shininess;
    5959
    6060  this->textures = material.textures;
Note: See TracChangeset for help on using the changeset viewer.