| 1871 | } |
| 1872 | |
| 1873 | vtkSmartPointer<vtkPoints> vtkIOSSReaderInternal::GetGeometry( |
| 1874 | const std::string& blockname, const DatabaseHandle& handle) |
| 1875 | { |
| 1876 | auto region = this->GetRegion(handle); |
| 1877 | auto group_entity = GetNodeBlock(region, blockname); |
| 1878 | |
| 1879 | if (!group_entity) |
| 1880 | { |
| 1881 | return nullptr; |
| 1882 | } |
| 1883 | vtkLogScopeF(TRACE, "GetGeometry(%s)[file=%s]", blockname.c_str(), |
| 1884 | this->GetRawFileName(handle, true).c_str()); |
| 1885 | return vtkIOSSUtilities::GetMeshModelCoordinates(group_entity, &this->Cache); |
| 1886 | } |
| 1887 | |
| 1888 | bool vtkIOSSReaderInternal::GetGeometry( |
| 1889 | vtkUnstructuredGrid* grid, const std::string& blockname, const DatabaseHandle& handle) |
no test coverage detected