<div dir="ltr">We are using vtkBoxRepresentation in tomviz to perform cropping. The outline color defaults to white, which is not so good for a white background! So we are trying to set it to an off white (0.8, 0.8, 0.8) However, the value gets rendered as white? What am I missing? Here is the python code to recreate this issue<div><br></div><div><div>import vtk</div><div><br></div><div>ren = vtk.vtkRenderer()</div><div>ren.SetBackground(1,1,1)</div><div><br></div><div>renWin = vtk.vtkRenderWindow()</div><div>renWin.AddRenderer(ren)</div><div><br></div><div>iren = vtk.vtkRenderWindowInteractor()</div><div>iren.SetRenderWindow(renWin)</div><div><br></div><div>boxRep = vtk.vtkBoxRepresentation()</div><div>boxRep.SetPlaceFactor(1.0)</div><div>boxRep.HandlesOn()</div><div>boxRep.GetOutlineProperty().SetColor(0.8, 0.8, 0.8)</div><div><br></div><div>boxWidget = vtk.vtkBoxWidget2()</div><div>boxWidget.SetInteractor(iren)</div><div>boxWidget.SetRepresentation(boxRep)</div><div>boxWidget.SetPriority(1)</div><div>boxWidget.On()</div><div><br></div><div>iren.Initialize()</div><div>renWin.Render()</div><div>iren.Start()</div></div><div><br></div><div><br></div><div>Thanks, </div><div><br></div><div>Chris</div><div><br></div></div>