------------------------------------------------------------------------------ Return composite color of object (ambient + diffuse + specular). Return value is a pointer to rgb values.
| 265 | // Return composite color of object (ambient + diffuse + specular). Return value |
| 266 | // is a pointer to rgb values. |
| 267 | double* vtkProperty::GetColor() |
| 268 | { |
| 269 | vtkProperty::ComputeCompositeColor(this->Color, this->Ambient, this->AmbientColor, this->Diffuse, |
| 270 | this->DiffuseColor, this->Specular, this->SpecularColor); |
| 271 | return this->Color; |
| 272 | } |
| 273 | |
| 274 | //------------------------------------------------------------------------------ |
| 275 | // Copy composite color of object (ambient + diffuse + specular) into array |
no outgoing calls