OGS
VtkCompositePointToGlyphFilter.h
Go to the documentation of this file.
1
15#pragma once
16
17#include "VtkCompositeFilter.h"
18
19class vtkSphereSource;
20
23{
24public:
25 explicit VtkCompositePointToGlyphFilter(vtkAlgorithm* inputAlgorithm);
27
28 void init() override;
29
30 void SetUserProperty(QString name, QVariant value) override;
31
32private:
33 vtkSphereSource* _glyphSource;
34};
Definition of the VtkCompositeFilter class.
Is used to combine several filter in one VtkVisPipelineItem. You can use vtk filter and custom filter...
Converts point data to scalar-scaled spheres.
void SetUserProperty(QString name, QVariant value) override
Sets a user property. This should be implemented by subclasses.
VtkCompositePointToGlyphFilter(vtkAlgorithm *inputAlgorithm)