MantisBT - VTK
View Issue Details
0015573VTK(No Category)public2015-07-09 05:372016-03-29 04:51
Mathieu Westphal 
Mathieu Westphal 
urgentminorhave not tried
closedno change required 
 
 
TBD
incorrect functionality
0015573: Bug in vtkPointSet FindCell
    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;
      }


hackaton
Issue History
2015-07-09 05:37Mathieu WestphalNew Issue
2015-07-09 05:37Mathieu WestphalAssigned To => Mathieu Westphal
2015-07-09 05:37Mathieu WestphalFile Added: Untitled.png
2015-07-09 05:42Mathieu WestphalNote Added: 0034714
2015-07-09 05:42Mathieu WestphalNote Edited: 0034714bug_revision_view_page.php?rev_id=1134
2015-07-09 05:43Mathieu WestphalDescription Updatedbug_revision_view_page.php?rev_id=1136#r1136
2015-07-09 11:03Mathieu WestphalNote Added: 0034719
2015-08-13 08:37Mathieu WestphalNote Added: 0034984
2015-10-19 20:15Will SchroederTag Attached: hackaton
2016-03-23 06:40Mathieu WestphalNote Deleted: 0034714
2016-03-23 06:40Mathieu WestphalNote Edited: 0034719bug_revision_view_page.php?rev_id=1554
2016-03-23 06:41Mathieu WestphalDescription Updatedbug_revision_view_page.php?rev_id=1555#r1555
2016-03-23 06:41Mathieu WestphalFile Deleted: Untitled.png
2016-03-23 06:41Mathieu WestphalNote Deleted: 0034719
2016-03-29 04:51Mathieu WestphalStatusbacklog => closed
2016-03-29 04:51Mathieu WestphalResolutionopen => fixed
2016-03-29 04:51Mathieu WestphalResolutionfixed => no change required

Notes
(0034984)
Mathieu Westphal   
2015-08-13 08:37   
https://gitlab.kitware.com/vtk/vtk/merge_requests/399 [^]