Skip to content
Snippets Groups Projects
Commit 995e44f5 authored by Charly Bollinger's avatar Charly Bollinger
Browse files

vtkThreshold: Document magnitude option

parent b9e64e8a
No related branches found
No related tags found
No related merge requests found
## Add a magnitude option to vtkThreshold
You can now use input array's magnitude values for thresholding data.
To do so, you just need to set the selected component (when on SELECTED
mode) as the number of component of the input array.
```cpp
// let's say you have a source with a 'Speed' array
// which has 3 components
vtkNew<vtkThreshold> threshold;
threshold->SetInputConnection(source->GetOutputPort());
threshold->SetInputArrayToProcess(0, 0, 0, 0, "Speed");
threshold->SetThresholdFunction(vtkThreshold::THRESHOLD_UPPER);
threshold->SetUpperThreshold(4.2);
threshold->SetComponentModeToUseSelected();
threshold->SetSelectedComponent(3); // Select magnitude
threshold->Update();
```
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment