gitextract_hxnqu4v5/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── cmake.yml ├── CITATION.cff ├── CMakeLists.txt ├── Contact.cxx ├── Contact.h ├── LICENSE ├── Merger.cxx ├── Merger.h ├── Optimize.cxx ├── Optimize.h ├── README.md ├── Utilities.cxx ├── Utilities.h ├── module/ │ ├── CMakeLists.txt │ └── vtk.module ├── paraview/ │ ├── CMakeLists.txt │ ├── module/ │ │ ├── CMakeLists.txt │ │ ├── vtk.module │ │ └── vtkPolyDataBooleanFilter.xml │ └── paraview.plugin ├── run_some_tests.sh ├── testing/ │ ├── data/ │ │ ├── branched.vtk │ │ ├── branched3.vtk │ │ ├── branched4.vtk │ │ ├── branched6.vtk │ │ ├── cross.vtk │ │ ├── merger.vtk │ │ └── non-manifold.vtk │ ├── generate_frieze.py │ ├── pytest.ini │ ├── test_congruence.cxx │ ├── test_filter.py │ ├── test_merger.cxx │ └── test_python.py ├── vtkPolyDataBooleanFilter.cxx └── vtkPolyDataBooleanFilter.h