Skip to content
Snippets Groups Projects
Commit f2e626cb authored by Utkarsh Ayachit's avatar Utkarsh Ayachit Committed by Kitware Robot
Browse files

Merge topic 'first_visible_cell'


72b9f62e Get dimensions from a visible cell.

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !450
parents 74e7a5ec 72b9f62e
No related branches found
No related tags found
No related merge requests found
......@@ -319,6 +319,31 @@ void vtkCutter::RectilinearGridCutter(vtkDataSet *dataSetInput,
contourData->Delete();
}
namespace{
//----------------------------------------------------------------------------
// Find the first visible cell in a vtkStructuredGrid.
//
vtkIdType GetFirstVisibleCell(vtkDataSet *DataSetInput)
{
vtkStructuredGrid *input = vtkStructuredGrid::SafeDownCast(DataSetInput);
if(input)
{
if(input->HasAnyBlankCells())
{
vtkIdType size = input->GetNumberOfElements(vtkDataSet::CELL);
for(vtkIdType i = 0; i < size; ++i)
{
if(input->IsCellVisible(i) != 0)
{
return i;
}
}
}
}
return 0;
}
}
//----------------------------------------------------------------------------
// Cut through data generating surface.
//
......@@ -368,7 +393,7 @@ int vtkCutter::RequestData(
}
else if (input->GetDataObjectType() == VTK_STRUCTURED_GRID &&
input->GetCell(0) &&
input->GetCell(0)->GetCellDimension() >= 3)
input->GetCell(GetFirstVisibleCell(input))->GetCellDimension() >= 3)
{
this->StructuredGridCutter(input, output);
}
......
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