├── .gitattributes ├── img ├── area_avg_error.png ├── area_max_error.png ├── correct_triangulation.png ├── errors_l.jpg ├── spheres_4.png ├── surface_avg_error.png └── surface_max_error.png ├── readme.md └── src ├── spheres.cpp └── stb_image_write.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/.gitattributes -------------------------------------------------------------------------------- /img/area_avg_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/img/area_avg_error.png -------------------------------------------------------------------------------- /img/area_max_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/img/area_max_error.png -------------------------------------------------------------------------------- /img/correct_triangulation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/img/correct_triangulation.png -------------------------------------------------------------------------------- /img/errors_l.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/img/errors_l.jpg -------------------------------------------------------------------------------- /img/spheres_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/img/spheres_4.png -------------------------------------------------------------------------------- /img/surface_avg_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/img/surface_avg_error.png -------------------------------------------------------------------------------- /img/surface_max_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/img/surface_max_error.png -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/readme.md -------------------------------------------------------------------------------- /src/spheres.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/src/spheres.cpp -------------------------------------------------------------------------------- /src/stb_image_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/caosdoar/spheres/HEAD/src/stb_image_write.h --------------------------------------------------------------------------------