Skip to content
Snippets Groups Projects
Commit aaa489e8 authored by Louis Gombert's avatar Louis Gombert :speech_balloon:
Browse files

JSONDataSetWriter: improve PrintSelf

parent f4d4108e
No related branches found
No related tags found
1 merge request!11713JSONExporter: select arrays to be written for a collection of named actors
......@@ -403,6 +403,15 @@ bool vtkJSONDataSetWriter::WriteArrayAsRAW(vtkDataArray* array, const char* file
void vtkJSONDataSetWriter::PrintSelf(ostream& os, vtkIndent indent)
{
this->Superclass::PrintSelf(os, indent);
os << indent << "Archiver:" << endl;
this->Archiver->PrintSelf(os, indent.GetNextIndent());
os << indent << "PointArraySelection:" << endl;
this->PointArraySelection->PrintSelf(os, indent.GetNextIndent());
os << indent << "CelltArraySelection:" << endl;
this->CellArraySelection->PrintSelf(os, indent.GetNextIndent());
}
//------------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment