VTKFIG  0.20.20181114
Easy VTK based in situ visualization
void vtkfig::internals::MainThread::Interact ( )
private

Blocking event loop demanding user interaction unblocked by space key.

Definition at line 206 of file vtkfigMainThread-2018-01-26-2205.cxx.

207  {
208  this->communication_blocked=true;
209 
211 
212  do
213  {
214  std::this_thread::sleep_for (std::chrono::milliseconds(10));
215  if (!this->running_multithreaded)
216  Show();
217  }
218  while (this->communication_blocked);
219 
220  }
bool communication_blocked
space down state ?
void Show()
Show all frames aka nonblocking event loop.
void SendCommand(int iframe, const std::string from, Communicator::Command cmd)
Communication with render thread.
bool running_multithreaded
Thread state.

+ Here is the call graph for this function: