VTKFIG  0.20.20181114
Easy VTK based in situ visualization
void vtkfig::Figure::SendRGBTable ( vtkSmartPointer< internals::Communicator communicator,
RGBTable rgbtab 
)
staticprotected

Send rgb table to client.

Definition at line 204 of file vtkfigFigure.cxx.

205  {
206  communicator->SendInt(rgbtab.size());
207  communicator->SendDoubleBuffer((double*)rgbtab.data(),rgbtab.size()*sizeof(RGBPoint)/sizeof(double));
208  }