OGS
VtkCompositeNodeSelectionFilter.h
Go to the documentation of this file.
1
15#pragma once
16
17#include "VtkCompositeFilter.h"
18#include "GeoLib/Point.h"
19
20#include <vector>
21
24{
25public:
26 explicit VtkCompositeNodeSelectionFilter(vtkAlgorithm* inputAlgorithm);
28
29 void init() override;
30
32 void setSelectionArray(const std::vector<unsigned> &point_indeces);
33
34private:
35 std::vector<GeoLib::Point*> _selection;
36};
Definition of the Point class.
Definition of the VtkCompositeFilter class.
Is used to combine several filter in one VtkVisPipelineItem. You can use vtk filter and custom filter...
This filter displays the points/nodes given in the index field as spheres.
void setSelectionArray(const std::vector< unsigned > &point_indeces)
Sets the point indices to be highlighted.
VtkCompositeNodeSelectionFilter(vtkAlgorithm *inputAlgorithm)