<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">2016-06-30 17:32 GMT+02:00 Remi Charrier <span dir="ltr"><<a href="mailto:remi.charrier@gmail.com" target="_blank">remi.charrier@gmail.com</a>></span>:<br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr">Hi,<div><br></div><div>I would like to try the following filters: </div><div><div>"vtkButterflySubdivisionFilter.h"</div><div>"vtkLoopSubdivisionFilter.h"</div><div>"vtkLinearSubdivisionFilter.h"</div></div><div>in order to increase the number of cells in my 3D models. <br></div><div><br></div><div>I have the source files but they didn't compile as I probably did not include them in the CMake process. However I still don't understand where to find to which vtkmodule a specific file is linked. I thought it was based on the folders name but in this case, the path is : </div><div>VTK-7.0.0\Filters\Modeling</div><div>in the cmakelist.txt of this folder I find that it may be associated with vtkFiltersModeling </div><div>But I don't have this module or entry in the Cmake window. </div><div>Any help would be welcome. </div><div>Thanks in advance</div></div></blockquote><div><br></div><div>David Gobbi recently pointed me at a handy script included in the VTK source. You can run it on your files/directories an it will try to determine which modules you need besed on the headers you include.<br><br></div><div>Running it on just those three headers, I get:<br><br>estan@newton:~/orexplore/VTK$ cat test.cpp <br>#include <vtkButterflySubdivisionFilter.h><br>#include <vtkLoopSubdivisionFilter.h><br>#include <vtkLinearSubdivisionFilter.h><br>estan@newton:~/orexplore/VTK$ Utilities/Maintenance/WhatModulesVTK.py . test.cpp <br>Modules and their dependencies:<br>find_package(VTK COMPONENTS<br>  vtkCommonComputationalGeometry<br>  vtkCommonCore<br>  vtkCommonDataModel<br>  vtkCommonExecutionModel<br>  vtkCommonMath<br>  vtkCommonMisc<br>  vtkCommonSystem<br>  vtkCommonTransforms<br>  vtkFiltersCore<br>  vtkFiltersGeneral<br>  vtkFiltersModeling<br>  vtkFiltersSources<br>  vtkkwiml<br>)<br>Your application code includes 13 of 189 vtk modules.<br><br>All modules referenced in the files:<br>find_package(VTK COMPONENTS<br>  vtkFiltersModeling<br>)<br>Your application code includes 1 of 189 vtk modules.<br><br>Minimal set of modules:<br>find_package(VTK COMPONENTS<br>  vtkFiltersModeling<br>)<br>Your application code includes 1 of 189 vtk modules.<br><br><br>estan@newton:~/orexplore/VTK$<br><br></div><div>I don't know why you don't have the vtkFiltersModeling module, but it would help to see your CMakeLists.txt and CMake output I think.<br><br></div><div>Elvis<br><br></div><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div>Rémi</div><div><br></div></div>
<br>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" rel="noreferrer" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" rel="noreferrer" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" rel="noreferrer" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Search the list archives at: <a href="http://markmail.org/search/?q=vtkusers" rel="noreferrer" target="_blank">http://markmail.org/search/?q=vtkusers</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://public.kitware.com/mailman/listinfo/vtkusers" rel="noreferrer" target="_blank">http://public.kitware.com/mailman/listinfo/vtkusers</a><br>
<br></blockquote></div><br></div></div>