| 509 | } |
| 510 | |
| 511 | std::string vtkGLTFExporter::WriteToString() |
| 512 | { |
| 513 | std::ostringstream result; |
| 514 | |
| 515 | this->WriteToStream(result); |
| 516 | |
| 517 | return result.str(); |
| 518 | } |
| 519 | |
| 520 | void vtkGLTFExporter::WriteData() |
| 521 | { |
nothing calls this directly
no test coverage detected