-
Notifications
You must be signed in to change notification settings - Fork 1
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
vtk vs xml-vtk mixed up. #82
Comments
PostProcessingOperators.cpp have been adapted to use IOHelper methods |
Does not compile under our pool computers.
|
boost version? |
trim_all seems to be new with boost version 1.47. I will implement a work around without trim all. Anything else? |
We have 1.48/1.49 installed:
|
strange, that should work. |
It compiles now. I would say we can merge it. I get errors at execution of on some example with |
Yes, I am working on the same issue of the vtkWriters that should also fix the examples. Does the MiscMeshOperatorsExample project compile and run? |
Compiles and dies with a segfault.
|
Make sure the CMAKE_TESTDATA_PATH variable (in CMAKE) is set to the testdata folder. |
still an error
similar to #84 |
yes, same problem. But works on my machine. Can you open the testdata/bunny_polydata.vtk with paraview? |
Which VTK version do you use? Paraview works (build against VTK 5.10 and VTK 6.1) |
5.9 (and 6.1 in a few minutes) |
its a 5.9 vs 6.1 problem - give me a few minutes... |
fixed - MiscMeshOperatorsExample works with vtk 6.1 now. |
|
We are mixing old a new (xml) vtk input/output across our c++ operators. A lot of operator calls fail because they needed a specific input type (e.g vtk instead of vtu)
I have implemented generic readers: please use IOHelper::VTKReadImage, IOHelper::VTKReadUnstructuredGrid, IOHelper::VTKReadPolyData in the future.
The operator of MiscMeshOperators.cpp have all been adapted. To make sure they still work, the example was adapted to test all operators of MiscMeshOperators.cpp using data provided in GIT Hub.
All changes are currently on the more_paramters branch. Can someone please check if everything still compiles on Linux and run the exmpale? Afterwards I will merge back to master.
The text was updated successfully, but these errors were encountered: