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=========================================================================*/
29#ifndef vtkStreamSurface_h
30#define vtkStreamSurface_h
31
32#include "vtkFiltersFlowPathsModule.h" // For export macro
33#include "vtkStreamTracer.h"
34
37
38class VTKFILTERSFLOWPATHS_EXPORT vtkStreamSurface : public vtkStreamTracer
39{
40public:
43 void PrintSelf(ostream& os, vtkIndent indent) override;
44
46
49 vtkSetMacro(UseIterativeSeeding, bool);
50 vtkGetMacro(UseIterativeSeeding, bool);
51 vtkBooleanMacro(UseIterativeSeeding, bool);
53
54protected:
57
59
60private:
61 vtkStreamSurface(const vtkStreamSurface&) = delete;
62 void operator=(const vtkStreamSurface&) = delete;
63
71 int AdvectSimple(vtkDataObject* field, vtkPolyData* seeds, vtkPolyData* output);
72
86 int AdvectIterative(
87 vtkDataObject* field, vtkPolyData* seeds, int integrationDirection, vtkPolyData* output);
88
92 bool UseIterativeSeeding = false;
93
95 vtkNew<vtkStreamTracer> StreamTracer;
96 vtkNew<vtkAppendPolyData> AppendSurfaces;
97};
98#endif
appends one or more polygonal datasets together
general representation of visualization data
a simple class to control print indentation
Definition vtkIndent.h:40
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
Allocate and hold a VTK object.
Definition vtkNew.h:62
concrete dataset represents vertices, lines, polygons, and triangle strips
Definition vtkPolyData.h:91
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.