------------------------------------------------------------------------------
| 247 | |
| 248 | //------------------------------------------------------------------------------ |
| 249 | std::vector<vtkHDFWriter::Implementation::PolyDataTopos> |
| 250 | vtkHDFWriter::Implementation::GetCellArraysForTopos(vtkPolyData* polydata) |
| 251 | { |
| 252 | return { |
| 253 | { "Vertices", polydata->GetVerts() }, |
| 254 | { "Lines", polydata->GetLines() }, |
| 255 | { "Polygons", polydata->GetPolys() }, |
| 256 | { "Strips", polydata->GetStrips() }, |
| 257 | }; |
| 258 | } |
| 259 | |
| 260 | //------------------------------------------------------------------------------ |
| 261 | vtkHDF::ScopedH5DHandle vtkHDFWriter::Implementation::CreateAndWriteHdfDataset(hid_t group, |
no test coverage detected