View Issue Details Jump to Notes ] Print ]
IDProjectCategoryView StatusDate SubmittedLast Update
0010787ParaViewBugpublic2010-06-02 13:182016-08-12 09:58
ReporterPaul Edwards 
Assigned ToKyle Lutz 
PrioritynormalSeverityminorReproducibilityalways
StatusclosedResolutionmoved 
PlatformOSOS Version
Product Version3.8 
Target VersionFixed in Version 
Summary0010787: Field data is not maintained with the D3 filter
DescriptionD3 does not pass though any fielddata (i.e. data that is not associated with a point or cell).
TagsNo tags attached.
Project
Topic Name
Type
Attached Files

 Relationships
has duplicate 0012777closedAndy Bauer VTK pass field data when vtkDataSet::CopyAttributes() 

  Notes
(0027421)
Paul Edwards (reporter)
2011-08-24 10:09

Why was this closed?
(0027565)
Felipe Bordeu (reporter)
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 (viewer)
2012-08-27 10:23

Patch pushed to gerrit for review: http://review.source.kitware.com/#/t/1138/ [^]
(0029122)
Kyle Lutz (viewer)
2012-09-04 10:11

Merged to VTK-master
(0029140)
Utkarsh Ayachit (administrator)
2012-09-07 14:50

merged in master if applicable
(0030219)
Utkarsh Ayachit (administrator)
2013-01-22 16:17

need to verify this works.
(0037831)
Kitware Robot (administrator)
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.

 Issue History
Date Modified Username Field Change
2010-06-02 13:18 Paul Edwards New Issue
2011-08-24 10:09 Paul Edwards Note Added: 0027421
2011-08-24 10:09 Paul Edwards Status expired => backlog
2011-08-24 10:09 Paul Edwards Resolution open => reopened
2011-10-12 04:39 Felipe Bordeu Note Added: 0027565
2012-08-27 10:05 Utkarsh Ayachit Assigned To => Kyle Lutz
2012-08-27 10:16 Kyle Lutz Status backlog => todo
2012-08-27 10:16 Kyle Lutz Status todo => active development
2012-08-27 10:23 Kyle Lutz Note Added: 0029074
2012-08-27 10:28 Kyle Lutz Relationship added has duplicate 0012777
2012-09-04 10:11 Kyle Lutz Note Added: 0029122
2012-09-04 10:12 Kyle Lutz Status active development => gatekeeper review
2012-09-04 10:12 Kyle Lutz Resolution reopened => fixed
2012-09-07 14:50 Utkarsh Ayachit Fixed in Version => git-master
2012-09-07 14:50 Utkarsh Ayachit Status gatekeeper review => customer review
2012-09-07 14:50 Utkarsh Ayachit Note Added: 0029140
2012-10-29 17:04 Utkarsh Ayachit Fixed in Version git-master => 3.98.0
2013-01-22 16:17 Utkarsh Ayachit Note Added: 0030219
2013-01-22 16:17 Utkarsh Ayachit Status customer review => backlog
2013-01-22 16:17 Utkarsh Ayachit Resolution fixed => reopened
2016-08-12 09:58 Kitware Robot Note Added: 0037831
2016-08-12 09:58 Kitware Robot Status backlog => closed
2016-08-12 09:58 Kitware Robot Fixed in Version 3.98.0 =>
2016-08-12 09:58 Kitware Robot Resolution reopened => moved


Copyright © 2000 - 2018 MantisBT Team