| 1267 | } |
| 1268 | |
| 1269 | void vtkBoxRepresentation::SetForegroundColor(double _arg1, double _arg2, double _arg3) |
| 1270 | { |
| 1271 | double* outlineColor = this->OutlineProperty->GetColor(); |
| 1272 | if ((outlineColor[0] != _arg1) || (outlineColor[1] != _arg2) || (outlineColor[2] != _arg3)) |
| 1273 | { |
| 1274 | this->OutlineProperty->SetColor(_arg1, _arg2, _arg3); |
| 1275 | this->HexActor->Modified(); |
| 1276 | this->HexOutline->Modified(); |
| 1277 | this->Modified(); |
| 1278 | } |
| 1279 | } |
| 1280 | |
| 1281 | void vtkBoxRepresentation::SetInteractionColor(double _arg1, double _arg2, double _arg3) |
| 1282 | { |