You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On Thu, Aug 30, 2018, 2:24 AM ftpronk ***@***.***> wrote:
There are a few bugs in the VisualDebugging Cxx demo, some linked to the
pipeline changes introduced in vtk 6.
1.
The angled brackets should be changed to quotes when including
vtkTestFilter.h in VisualDebugging.cxx and vtkTestFilter.cxx, to
change:
#include <vtkTestFilter.h>
to
#include "vtkTestFilter.h"
2.
The line 35 of VisualDebugging.cxx should be modified from:
this->Mapper->SetInput(intermediate);
to
this->Mapper->SetInputData(intermediate);
3.
The line 57 in vtkTestFilter.cxx should be changed from:
appendFilter->AddInputConnection(this->Output->GetProducerPort());
to
appendFilter->AddInputData(this->Output);
I've attached a patch fix below.
Kind regards,
Francois.
patch.txt
<https://github.com/lorensen/VTKExamples/files/2335491/patch.txt>
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#233>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAUFDDs0EnjduCtp5E1GAF89OIG9rXRKks5uV69kgaJpZM4WTGg->
.
There are a few bugs in the VisualDebugging Cxx demo, some linked to the pipeline changes introduced in vtk 6.
The angled brackets should be changed to quotes when including
vtkTestFilter.h
inVisualDebugging.cxx
andvtkTestFilter.cxx
, to change:to
The line 35 of
VisualDebugging.cxx
should be modified from:to
The line 57 in
vtkTestFilter.cxx
should be changed from:to
I've attached a patch fix below.
Kind regards,
Francois.
patch.txt
The text was updated successfully, but these errors were encountered: