<DIV>Hi, Teresa,</DIV>
<DIV>&nbsp; you can try class vtkColorTransferFunction. for example:</DIV>
<DIV>// Create a transfer function mapping scalar value to color (color)<BR>&nbsp; vtkColorTransferFunction *cTFun = vtkColorTransferFunction::New();<BR>&nbsp; cTFun-&gt;AddRGBPoint(&nbsp;&nbsp; 0, 1.0, 0.0, 0.0 );<BR>&nbsp; cTFun-&gt;AddRGBPoint(&nbsp; 64, 1.0, 1.0, 0.0 );<BR>&nbsp; cTFun-&gt;AddRGBPoint( 128, 0.0, 1.0, 0.0 );<BR>&nbsp; cTFun-&gt;AddRGBPoint( 192, 0.0, 1.0, 1.0 );<BR>&nbsp; cTFun-&gt;AddRGBPoint( 255, 0.0, 0.0, 1.0 );<BR>&nbsp; hope this could help you.</DIV>
<DIV>&nbsp; M. J.</DIV>