OGS
VtkCompositeContourFilter.h
Go to the documentation of this file.
1
15#pragma once
16
17#include "VtkCompositeFilter.h"
18
23{
24public:
25 explicit VtkCompositeContourFilter(vtkAlgorithm* inputAlgorithm);
27
28 void init() override;
29
30 void SetUserProperty(QString name, QVariant value) override;
31
32 void SetUserVectorProperty(QString name, QList<QVariant> values) override;
33
34private:
35};
Definition of the VtkCompositeFilter class.
Visualisation of contour-lines/-planes within dense scalar fields. In init() the threshold is first s...
VtkCompositeContourFilter(vtkAlgorithm *inputAlgorithm)
~VtkCompositeContourFilter() override
void SetUserVectorProperty(QString name, QList< QVariant > values) override
Sets a vector user property. This should be implemented by subclasses.
void SetUserProperty(QString name, QVariant value) override
Sets a user property. This should be implemented by subclasses.
Is used to combine several filter in one VtkVisPipelineItem. You can use vtk filter and custom filter...