| 286 | } |
| 287 | |
| 288 | void mitk::Material::Initialize(const Material &property) |
| 289 | { |
| 290 | this->SetColor(property.GetColor()); |
| 291 | this->SetColorCoefficient(property.GetColorCoefficient()); |
| 292 | this->SetSpecularColor(property.GetSpecularColor()); |
| 293 | this->SetSpecularCoefficient(property.GetSpecularCoefficient()); |
| 294 | this->SetSpecularPower(property.GetSpecularPower()); |
| 295 | this->SetOpacity(property.GetOpacity()); |
| 296 | this->SetInterpolation(property.GetInterpolation()); |
| 297 | this->SetRepresentation(property.GetRepresentation()); |
| 298 | this->SetLineWidth(property.GetLineWidth()); |
| 299 | this->SetName(property.GetName()); |
| 300 | } |
| 301 | |
| 302 | bool mitk::Material::operator==(const Material &property) const |
| 303 | { |
nothing calls this directly
no test coverage detected