VTK  9.4.20250322
vtkSMPContourGrid.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-License-Identifier: BSD-3-Clause
14#ifndef vtkSMPContourGrid_h
15#define vtkSMPContourGrid_h
16
17#include "vtkContourGrid.h"
18#include "vtkFiltersSMPModule.h" // For export macro
19
20VTK_ABI_NAMESPACE_BEGIN
21class VTKFILTERSSMP_EXPORT vtkSMPContourGrid : public vtkContourGrid
22{
23public:
25 void PrintSelf(ostream& os, vtkIndent indent) override;
26
31
33
42 vtkSetMacro(MergePieces, bool);
43 vtkGetMacro(MergePieces, bool);
44 vtkBooleanMacro(MergePieces, bool);
46
52
53protected:
56
59
60 int FillOutputPortInformation(int port, vtkInformation* info) override;
61
63
64private:
65 vtkSMPContourGrid(const vtkSMPContourGrid&) = delete;
66 void operator=(const vtkSMPContourGrid&) = delete;
67};
68
69VTK_ABI_NAMESPACE_END
70#endif
generate isosurfaces/isolines from scalar values (specialized for unstructured grids)
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
a subclass of vtkContourGrid that works in parallel vtkSMPContourGrid performs the same functionality...
vtkTypeBool ProcessRequest(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
Please see vtkAlgorithm for details.
virtual int RequestDataObject(vtkInformation *, vtkInformationVector **, vtkInformationVector *)
static vtkSMPContourGrid * New()
Constructor.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkSMPContourGrid() override
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.
int FillOutputPortInformation(int port, vtkInformation *info) override
Fill the output port information objects for this algorithm.
int vtkTypeBool
Definition vtkABI.h:64