VTK  9.3.20240425
Classes | Typedefs
vtkStreamTracer.h File Reference
#include "vtkFiltersFlowPathsModule.h"
#include "vtkPolyDataAlgorithm.h"
#include "vtkDataSetAttributesFieldList.h"
#include "vtkInitialValueProblemSolver.h"
#include <vector>
Include dependency graph for vtkStreamTracer.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  vtkIntervalInformation
 
class  vtkStreamTracer
 Streamline generator. More...
 

Typedefs

typedef bool(* CustomTerminationCallbackType) (void *clientdata, vtkPoints *points, vtkDataArray *velocity, int integrationDirection)
 Used to specify custom conditions which are evaluated to determine whether a streamline should be terminated.
 

Typedef Documentation

◆ CustomTerminationCallbackType

typedef bool(* CustomTerminationCallbackType) (void *clientdata, vtkPoints *points, vtkDataArray *velocity, int integrationDirection)

Used to specify custom conditions which are evaluated to determine whether a streamline should be terminated.

clientdata is set by the client when setting up the callback. points is the array of points integrated so far. velocity velocity vector integrated to produce the streamline. integrationDirection FORWARD of BACKWARD The function returns true if the streamline should be terminated and false otherwise.

Definition at line 236 of file vtkStreamTracer.h.