Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
VTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
VTK
VTK
Commits
aaa489e8
Commit
aaa489e8
authored
3 months ago
by
Louis Gombert
Browse files
Options
Downloads
Patches
Plain Diff
JSONDataSetWriter: improve PrintSelf
parent
f4d4108e
No related branches found
No related tags found
1 merge request
!11713
JSONExporter: select arrays to be written for a collection of named actors
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
IO/Export/vtkJSONDataSetWriter.cxx
+9
-0
9 additions, 0 deletions
IO/Export/vtkJSONDataSetWriter.cxx
with
9 additions
and
0 deletions
IO/Export/vtkJSONDataSetWriter.cxx
+
9
−
0
View file @
aaa489e8
...
...
@@ -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
());
}
//------------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
Louis Gombert
@louis.gombert
mentioned in commit
dbd83173
·
3 months ago
mentioned in commit
dbd83173
mentioned in commit dbd8317369c17879bfb027d0c5da47a870ae8914
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment