OGS
VtkCompositeNodeSelectionFilter.h
Go to the documentation of this file.
1
14
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.
VtkCompositeFilter(vtkAlgorithm *inputAlgorithm)
Constructor.
void setSelectionArray(const std::vector< unsigned > &point_indeces)
Sets the point indices to be highlighted.
VtkCompositeNodeSelectionFilter(vtkAlgorithm *inputAlgorithm)