Hello,<br><br>What will happen in the following case?<br><br>vtkSmartPointer<vtkGeometryFilter> gf = vtkSmartPointer<vtkGeometryFilter>::New();<br>gf->SetInput(unGrid);<br><br>vtkSmartPointer<vtkThreshold> thr = vtkSmartPointer<vtkThreshold>::New();<br>
thr->SetInputConnection(gf->GetOutputPort());<br><br>if( some_condition )<br>{<br> thr->ThresholdByLower( some_value );<br>}<br><br>vtkSmartPointer<vtkThreshold> bthr = vtkSmartPointer<vtkThreshold>::New();<br>
bthr->SetInputConnection( thr->GetOutputPort() );<br>bthr->ThresholdByLower( BAD_VALUE );<br><br>vtkSmartPointer<vtkDataSetSurfaceFilter> surfFilter = vtkSmartPointer<vtkDataSetSurfaceFilter>::New();<br>
surfFilter->SetInputConnection( bthr->GetOutputPort() );<br>...<br>...<br><br>How will 'thr' behave when 'some_condition' is false? Will there be any thresholding? If so then what will be the threshold value? What values will be passed to 'bthr'..??<br>
<br>I am asking this because, without<br><br>vtkSmartPointer<vtkThreshold> thr = vtkSmartPointer<vtkThreshold>::New();<br>
thr->SetInputConnection(gf->GetOutputPort());<br>
<br>
if( some_condition )<br>
{<br>
thr->ThresholdByLower( some_value );<br>
}<br><br>part of code, previously it was displaying correct output. After inserting this code, I am getting blank output.. Output is to display filled contour for a grid.<br><br>Thanks<br><br>Regards<br>Rakesh Patil<br>