Skip to content
Snippets Groups Projects
Commit 8e69caff authored by Karsten Rink's avatar Karsten Rink
Browse files

fixed a bug where selecting a mesh node for visualisation would crash the...

fixed a bug where selecting a mesh node for visualisation would crash the programme (due to vtk5 to vtk6 transition)
parent 074ea528
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ void VtkCompositeNodeSelectionFilter::init()
_glyphSource->SetRadius(this->GetInitialRadius());
vtkGlyph3D* glyphFilter = vtkGlyph3D::New();
glyphFilter->SetSourceData(_glyphSource->GetOutput());
glyphFilter->SetSourceConnection(_glyphSource->GetOutputPort());
glyphFilter->SetInputConnection(point_source->GetOutputPort());
_outputAlgorithm = glyphFilter;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment