| 328 | } |
| 329 | |
| 330 | void mitk::Material::Update() |
| 331 | { |
| 332 | this->SetColor(this->GetColor()); |
| 333 | this->SetColorCoefficient(this->GetColorCoefficient()); |
| 334 | this->SetSpecularColor(this->GetSpecularColor()); |
| 335 | this->SetSpecularCoefficient(this->GetSpecularCoefficient()); |
| 336 | this->SetSpecularPower(this->GetSpecularPower()); |
| 337 | this->SetOpacity(this->GetOpacity()); |
| 338 | this->SetInterpolation(this->GetInterpolation()); |
| 339 | this->SetRepresentation(this->GetRepresentation()); |
| 340 | } |
| 341 | |
| 342 | void mitk::Material::PrintSelf(std::ostream &os, itk::Indent /* unused */) const |
| 343 | { |
nothing calls this directly
no test coverage detected