MantisBT - VTK | |||||
View Issue Details | |||||
ID | Project | Category | View Status | Date Submitted | Last Update |
0012326 | VTK | (No Category) | public | 2011-07-01 09:04 | 2013-04-05 20:27 |
Reporter | Thomas F Albrecht | ||||
Assigned To | Kyle Lutz | ||||
Priority | high | Severity | minor | Reproducibility | have not tried |
Status | closed | Resolution | fixed | ||
Platform | OS | OS Version | |||
Product Version | |||||
Target Version | Fixed in Version | ||||
Project | TBD | ||||
Type | incorrect functionality | ||||
Summary | 0012326: vtkXMLCompositeDataWriter does not write blocks with PolyData | ||||
Description | PolyData blocks are not written, because of this code in line 590ff: vtkstd::string fname; if(this->Internal->DataTypes[piece] <= 0) { return fname; } PolyData has DataType 0, so instead of just discarding invalid DataTypes with values < 0 by returning only the name, the same is done for PolyData. This is easily fixed by replacing by: if(this->Internal->DataTypes[piece] <= 0) Then, everything works fine. In the attached file, the bug is fixed, yet marked with a "FIXME" tag. | ||||
Steps To Reproduce | |||||
Additional Information | |||||
Tags | No tags attached. | ||||
Relationships | |||||
Attached Files | ![]() https://www.vtk.org/Bug/file/8968/vtkXMLCompositeDataWriter.cxx | ||||
Issue History | |||||
Date Modified | Username | Field | Change | ||
2011-07-01 09:04 | Thomas F Albrecht | New Issue | |||
2011-07-01 09:04 | Thomas F Albrecht | File Added: vtkXMLCompositeDataWriter.cxx | |||
2011-07-01 09:30 | Utkarsh Ayachit | Assigned To | => Kyle Lutz | ||
2011-07-01 09:30 | Utkarsh Ayachit | Status | backlog => todo | ||
2011-07-01 09:35 | Thomas F Albrecht | Note Added: 0026937 | |||
2011-07-01 09:56 | Thomas F Albrecht | Note Added: 0026938 | |||
2011-07-01 10:12 | Kyle Lutz | Status | todo => active development | ||
2011-07-01 10:19 | Kyle Lutz | Note Added: 0026939 | |||
2011-07-01 10:19 | Kyle Lutz | Status | active development => gatekeeper review | ||
2011-07-08 16:26 | Utkarsh Ayachit | Status | gatekeeper review => customer review | ||
2013-04-05 20:27 | Berk Geveci | Status | customer review => closed | ||
2013-04-05 20:27 | Berk Geveci | Resolution | open => fixed |
Notes | |||||
|
|||||
|
|
||||
|
|||||
|
|
||||
|
|||||
|
|