VTKFIG  0.20.20181114
Easy VTK based in situ visualization
void vtkfig::Frame::RTInit ( )
private

Init title actor.

part of frame init from render thread

Definition at line 222 of file vtkfigFrame.cxx.

223  {
224  if (!this->title_actor)
225  {
226  this->title_actor= vtkSmartPointer<vtkCornerAnnotation>::New();
227  auto textprop=this->title_actor->GetTextProperty();
228  textprop->ItalicOff();
229  textprop->BoldOn();
230  textprop->SetFontSize(10);
231  textprop->SetFontFamilyToCourier();
232  textprop->SetColor(0,0,0);
233  }
234 
235 
236  }
vtkSmartPointer< vtkCornerAnnotation > title_actor
Actor for frame title annotation.
Definition: vtkfigFrame.h:417