VTK  9.4.20250206
vtkmContour.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) Ken Martin, Will Schroeder, Bill Lorensen
2// SPDX-FileCopyrightText: Copyright (c) Kitware, Inc.
3// SPDX-FileCopyrightText: Copyright 2012 Sandia Corporation.
4// SPDX-License-Identifier: LicenseRef-BSD-3-Clause-Sandia-USGov
22#ifndef vtkmContour_h
23#define vtkmContour_h
24
25#include "vtkAcceleratorsVTKmFiltersModule.h" //required for correct implementation
26#include "vtkContourFilter.h"
27#include "vtkmlib/vtkmInitializer.h" // Need for initializing vtk-m
28
29VTK_ABI_NAMESPACE_BEGIN
30class VTKACCELERATORSVTKMFILTERS_EXPORT vtkmContour : public vtkContourFilter
31{
32public:
34 void PrintSelf(ostream& os, vtkIndent indent) override;
35 static vtkmContour* New();
36
37protected:
44
46 ~vtkmContour() override;
47
49
50private:
51 vtkmContour(const vtkmContour&) = delete;
52 void operator=(const vtkmContour&) = delete;
53 vtkmInitializer Initializer;
54};
55
56VTK_ABI_NAMESPACE_END
57#endif // vtkmContour_h
generate isosurfaces/isolines from scalar values
abstract class to specify dataset behavior
Definition vtkDataSet.h:165
a simple class to control print indentation
Definition vtkIndent.h:108
Store zero or more vtkInformation instances.
Store vtkAlgorithm input/output information.
generate isosurface(s) from volume
Definition vtkmContour.h:31
bool CanProcessInput(vtkDataSet *input)
Check if the input dataset and parameters combination is supported by this filter.
void PrintSelf(ostream &os, vtkIndent indent) override
Methods invoked by print to print information about the object including superclasses.
~vtkmContour() override
static vtkmContour * New()
int RequestData(vtkInformation *, vtkInformationVector **, vtkInformationVector *) override
This is called by the superclass.