FEM: code formating replace lines of # with lines of *

This commit is contained in:
Bernd Hahnebach
2019-09-19 07:45:42 +02:00
parent 2f59bb50eb
commit 078237937f
4 changed files with 20 additions and 21 deletions

View File

@@ -253,13 +253,13 @@ void FemPostPipeline::load(FemResultObject* res) {
}
//first copy the mesh over
//########################
// ***************************
const FemMesh& mesh = static_cast<FemMeshObject*>(res->Mesh.getValue())->FemMesh.getValue();
vtkSmartPointer<vtkUnstructuredGrid> grid = vtkSmartPointer<vtkUnstructuredGrid>::New();
FemVTKTools::exportVTKMesh(&mesh, grid);
//Now copy the point data over
//############################
// ***************************
FemVTKTools::exportFreeCADResult(res, grid);
Data.setValue(grid);