View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0015573VTK(No Category)public2015-07-09 05:372016-03-29 04:51
ReporterMathieu Westphal 
Assigned ToMathieu Westphal 
PriorityurgentSeverityminorReproducibilityhave not tried
StatusclosedResolutionno change required 
PlatformOSOS Version
Product Version 
Target VersionFixed in Version 
Summary0015573: Bug in vtkPointSet FindCell
Description    if(cell->EvaluatePosition(x, closestPoint, subId,
                                     pcoords, dist2, weights) == 1
        && (dist2 <= tol2))
      {
      return cellId;
      }

Should be :

    int ret = cell->EvaluatePosition(x, closestPoint, subId,
                                     pcoords, dist2, weights);
    if (ret == 1 || ( ret == 0 && dist2 <= tol2))
      {
      return cellId;
      }


Tagshackaton
ProjectTBD
Typeincorrect functionality
Attached Files

 Relationships

  Notes
(0034984)
Mathieu Westphal (developer)
2015-08-13 08:37

https://gitlab.kitware.com/vtk/vtk/merge_requests/399 [^]

 Issue History
Date Modified Username Field Change
2015-07-09 05:37 Mathieu Westphal New Issue
2015-07-09 05:37 Mathieu Westphal Assigned To => Mathieu Westphal
2015-07-09 05:37 Mathieu Westphal File Added: Untitled.png
2015-07-09 05:42 Mathieu Westphal Note Added: 0034714
2015-07-09 05:42 Mathieu Westphal Note Edited: 0034714
2015-07-09 05:43 Mathieu Westphal Description Updated
2015-07-09 11:03 Mathieu Westphal Note Added: 0034719
2015-08-13 08:37 Mathieu Westphal Note Added: 0034984
2015-10-19 20:15 Will Schroeder Tag Attached: hackaton
2016-03-23 06:40 Mathieu Westphal Note Deleted: 0034714
2016-03-23 06:40 Mathieu Westphal Note Edited: 0034719
2016-03-23 06:41 Mathieu Westphal Description Updated
2016-03-23 06:41 Mathieu Westphal File Deleted: Untitled.png
2016-03-23 06:41 Mathieu Westphal Note Deleted: 0034719
2016-03-29 04:51 Mathieu Westphal Status backlog => closed
2016-03-29 04:51 Mathieu Westphal Resolution open => fixed
2016-03-29 04:51 Mathieu Westphal Resolution fixed => no change required


Copyright © 2000 - 2018 MantisBT Team