├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── build.yaml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── CMakePresets.json ├── LICENSE ├── README.md ├── cgal-plane-detection ├── CMakeLists.txt ├── include │ ├── cgal.h │ ├── intersections.h │ ├── objreader.h │ ├── planefit.h │ ├── polygons_helper.h │ ├── processing.h │ ├── regiongrow.h │ ├── savemesh.h │ ├── saveplanes.h │ ├── stdafx.h │ └── vtk_vis.h └── src │ ├── intersections.cpp │ ├── main.cpp │ ├── objreader.cpp │ ├── planefit.cpp │ ├── polygon_helper.cpp │ ├── processing.cpp │ ├── regiongrow.cpp │ ├── savemesh.cpp │ ├── saveplanes.cpp │ └── vtk_vis.cpp ├── img └── example.gif └── vcpkg.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/README.md -------------------------------------------------------------------------------- /cgal-plane-detection/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/CMakeLists.txt -------------------------------------------------------------------------------- /cgal-plane-detection/include/cgal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/cgal.h -------------------------------------------------------------------------------- /cgal-plane-detection/include/intersections.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/intersections.h -------------------------------------------------------------------------------- /cgal-plane-detection/include/objreader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/objreader.h -------------------------------------------------------------------------------- /cgal-plane-detection/include/planefit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/planefit.h -------------------------------------------------------------------------------- /cgal-plane-detection/include/polygons_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/polygons_helper.h -------------------------------------------------------------------------------- /cgal-plane-detection/include/processing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/processing.h -------------------------------------------------------------------------------- /cgal-plane-detection/include/regiongrow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/regiongrow.h -------------------------------------------------------------------------------- /cgal-plane-detection/include/savemesh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/savemesh.h -------------------------------------------------------------------------------- /cgal-plane-detection/include/saveplanes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/saveplanes.h -------------------------------------------------------------------------------- /cgal-plane-detection/include/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/stdafx.h -------------------------------------------------------------------------------- /cgal-plane-detection/include/vtk_vis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/include/vtk_vis.h -------------------------------------------------------------------------------- /cgal-plane-detection/src/intersections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/src/intersections.cpp -------------------------------------------------------------------------------- /cgal-plane-detection/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/src/main.cpp -------------------------------------------------------------------------------- /cgal-plane-detection/src/objreader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/src/objreader.cpp -------------------------------------------------------------------------------- /cgal-plane-detection/src/planefit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/src/planefit.cpp -------------------------------------------------------------------------------- /cgal-plane-detection/src/polygon_helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/src/polygon_helper.cpp -------------------------------------------------------------------------------- /cgal-plane-detection/src/processing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/src/processing.cpp -------------------------------------------------------------------------------- /cgal-plane-detection/src/regiongrow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/src/regiongrow.cpp -------------------------------------------------------------------------------- /cgal-plane-detection/src/savemesh.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/src/savemesh.cpp -------------------------------------------------------------------------------- /cgal-plane-detection/src/saveplanes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/src/saveplanes.cpp -------------------------------------------------------------------------------- /cgal-plane-detection/src/vtk_vis.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/cgal-plane-detection/src/vtk_vis.cpp -------------------------------------------------------------------------------- /img/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/img/example.gif -------------------------------------------------------------------------------- /vcpkg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/phygitalism/cgal-plane-detector/HEAD/vcpkg.json --------------------------------------------------------------------------------