MantisBT - ParaView
View Issue Details
0010787ParaViewBugpublic2010-06-02 13:182016-08-12 09:58
Paul Edwards 
Kyle Lutz 
normalminoralways
closedmoved 
3.8 
 
0010787: Field data is not maintained with the D3 filter
D3 does not pass though any fielddata (i.e. data that is not associated with a point or cell).
No tags attached.
has duplicate 0012777closed Andy Bauer VTK pass field data when vtkDataSet::CopyAttributes() 
Issue History
2010-06-02 13:18Paul EdwardsNew Issue
2011-08-24 10:09Paul EdwardsNote Added: 0027421
2011-08-24 10:09Paul EdwardsStatusexpired => backlog
2011-08-24 10:09Paul EdwardsResolutionopen => reopened
2011-10-12 04:39Felipe BordeuNote Added: 0027565
2012-08-27 10:05Utkarsh AyachitAssigned To => Kyle Lutz
2012-08-27 10:16Kyle LutzStatusbacklog => todo
2012-08-27 10:16Kyle LutzStatustodo => active development
2012-08-27 10:23Kyle LutzNote Added: 0029074
2012-08-27 10:28Kyle LutzRelationship addedhas duplicate 0012777
2012-09-04 10:11Kyle LutzNote Added: 0029122
2012-09-04 10:12Kyle LutzStatusactive development => gatekeeper review
2012-09-04 10:12Kyle LutzResolutionreopened => fixed
2012-09-07 14:50Utkarsh AyachitFixed in Version => git-master
2012-09-07 14:50Utkarsh AyachitStatusgatekeeper review => customer review
2012-09-07 14:50Utkarsh AyachitNote Added: 0029140
2012-10-29 17:04Utkarsh AyachitFixed in Versiongit-master => 3.98.0
2013-01-22 16:17Utkarsh AyachitNote Added: 0030219
2013-01-22 16:17Utkarsh AyachitStatuscustomer review => backlog
2013-01-22 16:17Utkarsh AyachitResolutionfixed => reopened
2016-08-12 09:58Kitware RobotNote Added: 0037831
2016-08-12 09:58Kitware RobotStatusbacklog => closed
2016-08-12 09:58Kitware RobotFixed in Version3.98.0 =>
2016-08-12 09:58Kitware RobotResolutionreopened => moved

Notes
(0027421)
Paul Edwards   
2011-08-24 10:09   
Why was this closed?
(0027565)
Felipe Bordeu   
2011-10-12 04:39   
One way to start solving this problem is to add the PassData of FieldData to the CopyAttributes member function.

I know it does not solve the problem for D3, but works for the calculator a others filters.


~/ParaView/VTK$ git diff
diff --git a/Filtering/vtkDataSet.cxx b/Filtering/vtkDataSet.cxx
index 859fda0..7bd196a 100644
--- a/Filtering/vtkDataSet.cxx
+++ b/Filtering/vtkDataSet.cxx
@@ -64,6 +64,7 @@ void vtkDataSet::CopyAttributes(vtkDataSet *ds)
 {
   this->GetPointData()->PassData(ds->GetPointData());
   this->GetCellData()->PassData(ds->GetCellData());
+ this->GetFieldData()->PassData(ds->GetFieldData());
 }
 
 //----------------------------------------------------------------------------

Felipe
(0029074)
Kyle Lutz   
2012-08-27 10:23   
Patch pushed to gerrit for review: http://review.source.kitware.com/#/t/1138/ [^]
(0029122)
Kyle Lutz   
2012-09-04 10:11   
Merged to VTK-master
(0029140)
Utkarsh Ayachit   
2012-09-07 14:50   
merged in master if applicable
(0030219)
Utkarsh Ayachit   
2013-01-22 16:17   
need to verify this works.
(0037831)
Kitware Robot   
2016-08-12 09:58   
Resolving issue as `moved`.

This issue tracker is no longer used. Further discussion of this issue may take place in the current ParaView Issues page linked in the banner at the top of this page.