Hi,
This isn't particularly a TTK question, but any help would be highly appreciated.
I followed the instructions to build from source and install TTK. I'm using Windows.
However, I wish to debug the code (step into the functions using Visual Studio). I wanted to understand how that can be done, assuming I have the build information (.pdbs, .dlls and .libs). I tried to link the corresponding .dlls, but I can only view the code in the header files.
To be clear on what I want to do, for instance, for the Contour Tree,
vtkSmartPointer<ttkFTMTree> contourTree
= vtkSmartPointer<ttkFTMTree>::New();
contourTree->SetInputData(reader->GetOutput());
contourTree->SetTreeType(ttk::ftm::TreeType::Contour);
contourTree->SetSuperArcSamplingLevel(0);
contourTree->Update();
I wish to step-into the code and undertand how the Contour Tree is being formed and the general code flow. Is this possible?
If it's easier to do this in Linux, I can do that as well.
Thanks,
Shubham