Skip to content
Snippets Groups Projects
Commit 2e9d08b6 authored by Ben Boeckel's avatar Ben Boeckel
Browse files

vtkImageToStructuredPoints: fix improper bounds alignment

parent 8f114753
No related branches found
No related tags found
No related merge requests found
......@@ -250,11 +250,11 @@ int vtkImageToStructuredPoints::RequestInformation(vtkInformation* vtkNotUsed(re
{
whole[1] = tmp[1];
}
if (tmp[3] < whole[1])
if (tmp[3] < whole[3])
{
whole[3] = tmp[3];
}
if (tmp[5] < whole[1])
if (tmp[5] < whole[5])
{
whole[5] = tmp[5];
}
......
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