├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── Plugin ├── CMakeLists.txt ├── IsotropicRemeshingFilter.plugin └── IsotropicRemeshingFilters │ ├── CMakeLists.txt │ ├── IsotropicRemeshingFilter.xml │ ├── vtk.module │ ├── vtkIsotropicRemeshingFilter.cxx │ └── vtkIsotropicRemeshingFilter.h ├── README.md └── data └── bull.vtp /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | build*/ 3 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /Plugin/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/Plugin/CMakeLists.txt -------------------------------------------------------------------------------- /Plugin/IsotropicRemeshingFilter.plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/Plugin/IsotropicRemeshingFilter.plugin -------------------------------------------------------------------------------- /Plugin/IsotropicRemeshingFilters/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/Plugin/IsotropicRemeshingFilters/CMakeLists.txt -------------------------------------------------------------------------------- /Plugin/IsotropicRemeshingFilters/IsotropicRemeshingFilter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/Plugin/IsotropicRemeshingFilters/IsotropicRemeshingFilter.xml -------------------------------------------------------------------------------- /Plugin/IsotropicRemeshingFilters/vtk.module: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/Plugin/IsotropicRemeshingFilters/vtk.module -------------------------------------------------------------------------------- /Plugin/IsotropicRemeshingFilters/vtkIsotropicRemeshingFilter.cxx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/Plugin/IsotropicRemeshingFilters/vtkIsotropicRemeshingFilter.cxx -------------------------------------------------------------------------------- /Plugin/IsotropicRemeshingFilters/vtkIsotropicRemeshingFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/Plugin/IsotropicRemeshingFilters/vtkIsotropicRemeshingFilter.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/README.md -------------------------------------------------------------------------------- /data/bull.vtp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CGAL/cgal-paraview-plugins/HEAD/data/bull.vtp --------------------------------------------------------------------------------