OGS
VtkCompositeNodeSelectionFilter.h
Go to the documentation of this file.
1// SPDX-FileCopyrightText: Copyright (c) OpenGeoSys Community (opengeosys.org)
2// SPDX-License-Identifier: BSD-3-Clause
3
4#pragma once
5
7#include "GeoLib/Point.h"
8
9#include <vector>
10
13{
14public:
15 explicit VtkCompositeNodeSelectionFilter(vtkAlgorithm* inputAlgorithm);
17
18 void init() override;
19
21 void setSelectionArray(const std::vector<unsigned> &point_indeces);
22
23private:
24 std::vector<GeoLib::Point*> _selection;
25};
VtkCompositeFilter(vtkAlgorithm *inputAlgorithm)
Constructor.
void setSelectionArray(const std::vector< unsigned > &point_indeces)
Sets the point indices to be highlighted.
VtkCompositeNodeSelectionFilter(vtkAlgorithm *inputAlgorithm)