VTKFIG  0.20.20181114
Easy VTK based in situ visualization
size_t vtkfig::NSpin ( )
Examples:
examples/example-custom.cxx, examples/example-custom1.cxx, examples/example-multifig.cxx, examples/example-rectcontour2d.cxx, examples/example-rectcontour3d.cxx, examples/example-rectquiver2d.cxx, examples/example-simplexcontour2d.cxx, examples/example-simplexcontour3d.cxx, examples/example-simplexquiver2d.cxx, and examples/example-xyplot.cxx.

Definition at line 13 of file vtkfigTools.cxx.

14  {
15  char *spinstr=getenv("VTKFIG_NSPIN");
16  if (spinstr==nullptr)
17  return std::numeric_limits<size_t>::max();
18  else
19  return atoi(spinstr);
20  }