├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── res └── teaser.png └── src └── plane.cc /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwdzh/CADPlaneFitting/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwdzh/CADPlaneFitting/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwdzh/CADPlaneFitting/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwdzh/CADPlaneFitting/HEAD/README.md -------------------------------------------------------------------------------- /res/teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwdzh/CADPlaneFitting/HEAD/res/teaser.png -------------------------------------------------------------------------------- /src/plane.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hjwdzh/CADPlaneFitting/HEAD/src/plane.cc --------------------------------------------------------------------------------