Skip to content
Snippets Groups Projects
Commit 22217f09 authored by Dan Lipsa's avatar Dan Lipsa Committed by Kitware Robot
Browse files

Merge topic 'fuzzyequal-fix'


5f46cf32 Use fuzzy equal.

Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
Merge-request: !6436
parents 13bc634a 5f46cf32
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@ PURPOSE. See the above copyright notice for more information.
#include "vtkIntArray.h"
#include "vtkInterpolatedVelocityField.h"
#include "vtkMath.h"
#include "vtkMathUtilities.h"
#include "vtkModifiedBSPTree.h"
#include "vtkMultiBlockDataSet.h"
#include "vtkNew.h"
......@@ -119,7 +120,7 @@ int vtkEvenlySpacedStreamlines2D::RequestData(vtkInformation* vtkNotUsed(request
}
double bounds[6];
vtkEvenlySpacedStreamlines2D::GetBounds(this->InputData, bounds);
if (bounds[5] != bounds[4])
if (!vtkMathUtilities::FuzzyCompare(bounds[4], bounds[5]))
{
this->InputData->UnRegister(this);
vtkErrorMacro("vtkEvenlySpacedStreamlines2D does not support planes not aligned with XY.");
......
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