------------------------------------------------------------------------------
| 446 | |
| 447 | //------------------------------------------------------------------------------ |
| 448 | std::string vtkJSONSceneExporter::CurrentDataSetPath() const |
| 449 | { |
| 450 | std::stringstream path; |
| 451 | path << this->GetTemporaryPath() << "/" << this->DatasetCount + 1; |
| 452 | return vtksys::SystemTools::ConvertToOutputPath(path.str()); |
| 453 | } |
| 454 | |
| 455 | //------------------------------------------------------------------------------ |
| 456 | std::string vtkJSONSceneExporter::WriteDataSet( |
no test coverage detected