Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VisualDebugging bugs. #233

Open
ftpronk opened this issue Aug 30, 2018 · 1 comment
Open

VisualDebugging bugs. #233

ftpronk opened this issue Aug 30, 2018 · 1 comment

Comments

@ftpronk
Copy link

ftpronk commented Aug 30, 2018

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

@lorensen
Copy link
Owner

lorensen commented Aug 30, 2018 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants