VTK  9.2.6
vtkStreamSurface.h
Go to the documentation of this file.
1/*=========================================================================
2
3 Program: Visualization Toolkit
4 Module: vtkStreamSurface.h
5
6 Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
7 All rights reserved.
8 See Copyright.txt or http://www.kitware.com/Copyright.htm for details.
9
10 This software is distributed WITHOUT ANY WARRANTY; without even
11 the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
12 PURPOSE. See the above copyright notice for more information.
13
14=========================================================================*/
26#ifndef vtkStreamSurface_h
27#define vtkStreamSurface_h
28
29#include "vtkFiltersFlowPathsModule.h" // For export macro
30#include "vtkStreamTracer.h"
31
34
35class VTKFILTERSFLOWPATHS_EXPORT vtkStreamSurface : public vtkStreamTracer
36{
37public:
40 void PrintSelf(ostream& os, vtkIndent indent) override;
41
43
46 vtkSetMacro(UseIterativeSeeding, bool);
47 vtkGetMacro(UseIterativeSeeding, bool);
48 vtkBooleanMacro(UseIterativeSeeding, bool);
50
51protected:
54
56
57private:
58 vtkStreamSurface(const vtkStreamSurface&) = delete;
59 void operator=(const vtkStreamSurface&) = delete;
60
68 int AdvectSimple(vtkDataObject* field, vtkPolyData* seeds, vtkPolyData* output);
69
83 int AdvectIterative(
84 vtkDataObject* field, vtkPolyData* seeds, int integrationDirection, vtkPolyData* output);
85
89 bool UseIterativeSeeding = false;
90
92 vtkNew<vtkStreamTracer> StreamTracer;
93 vtkNew<vtkAppendPolyData> AppendSurfaces;
94};
95#endif
appends one or more polygonal datasets together
general representation of visualization data
a simple class to control print indentation
Definition vtkIndent.h:34
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Allocate and hold a VTK object.
Definition vtkNew.h:56
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition vtkPolyData.h:85
generates a surface from a set of lines
~vtkStreamSurface() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
static vtkStreamSurface * New()
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.