├── .clang-format ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── data ├── armchair-mixed.obj ├── armchair-mixed.txt ├── block-points.txt ├── block.obj ├── brain-point.txt ├── brain.obj ├── bumpy-sphere.obj ├── bumpy-sphere.txt ├── cactus.obj ├── cactus.txt ├── dilo-unsigned.obj ├── dilo-unsigned.txt ├── dragon-mixed.obj ├── dragon-mixed.txt ├── duck.obj ├── duck.txt ├── ducky-star.pc ├── ducky-star.txt ├── dustbin.obj ├── dustbin.txt ├── fish-unsigned.obj ├── fish-unsigned.txt ├── hemisphere-point.txt ├── hemisphere.obj ├── mobius-orientable-curve.obj ├── mobius-orientable-curve.txt ├── polygon-bear.obj ├── polygon-bear.txt ├── screwdriver.obj ├── screwdriver.txt ├── shark-cupcake.obj ├── shark-cupcake.txt ├── sofa-scan.obj ├── sofa-scan.txt ├── vase-nested-curves.obj └── vase-nested-curves.txt ├── export ├── GSD.obj ├── colormap.png ├── curves.obj └── points.obj ├── include └── utils.h ├── media ├── Blender.png ├── Example.blend ├── IntrinsicRemesh.png ├── Teaser.pdf ├── Teaser.png ├── point-cloud.png ├── polygon-mesh.png └── triangle-mesh.png └── src ├── main.cpp └── utils.cpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/README.md -------------------------------------------------------------------------------- /data/armchair-mixed.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/armchair-mixed.obj -------------------------------------------------------------------------------- /data/armchair-mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/armchair-mixed.txt -------------------------------------------------------------------------------- /data/block-points.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/block-points.txt -------------------------------------------------------------------------------- /data/block.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/block.obj -------------------------------------------------------------------------------- /data/brain-point.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/brain-point.txt -------------------------------------------------------------------------------- /data/brain.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/brain.obj -------------------------------------------------------------------------------- /data/bumpy-sphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/bumpy-sphere.obj -------------------------------------------------------------------------------- /data/bumpy-sphere.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/bumpy-sphere.txt -------------------------------------------------------------------------------- /data/cactus.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/cactus.obj -------------------------------------------------------------------------------- /data/cactus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/cactus.txt -------------------------------------------------------------------------------- /data/dilo-unsigned.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/dilo-unsigned.obj -------------------------------------------------------------------------------- /data/dilo-unsigned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/dilo-unsigned.txt -------------------------------------------------------------------------------- /data/dragon-mixed.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/dragon-mixed.obj -------------------------------------------------------------------------------- /data/dragon-mixed.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/dragon-mixed.txt -------------------------------------------------------------------------------- /data/duck.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/duck.obj -------------------------------------------------------------------------------- /data/duck.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/duck.txt -------------------------------------------------------------------------------- /data/ducky-star.pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/ducky-star.pc -------------------------------------------------------------------------------- /data/ducky-star.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/ducky-star.txt -------------------------------------------------------------------------------- /data/dustbin.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/dustbin.obj -------------------------------------------------------------------------------- /data/dustbin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/dustbin.txt -------------------------------------------------------------------------------- /data/fish-unsigned.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/fish-unsigned.obj -------------------------------------------------------------------------------- /data/fish-unsigned.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/fish-unsigned.txt -------------------------------------------------------------------------------- /data/hemisphere-point.txt: -------------------------------------------------------------------------------- 1 | unsigned_point 2 | v 17 -------------------------------------------------------------------------------- /data/hemisphere.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/hemisphere.obj -------------------------------------------------------------------------------- /data/mobius-orientable-curve.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/mobius-orientable-curve.obj -------------------------------------------------------------------------------- /data/mobius-orientable-curve.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/mobius-orientable-curve.txt -------------------------------------------------------------------------------- /data/polygon-bear.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/polygon-bear.obj -------------------------------------------------------------------------------- /data/polygon-bear.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/polygon-bear.txt -------------------------------------------------------------------------------- /data/screwdriver.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/screwdriver.obj -------------------------------------------------------------------------------- /data/screwdriver.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/screwdriver.txt -------------------------------------------------------------------------------- /data/shark-cupcake.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/shark-cupcake.obj -------------------------------------------------------------------------------- /data/shark-cupcake.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/shark-cupcake.txt -------------------------------------------------------------------------------- /data/sofa-scan.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/sofa-scan.obj -------------------------------------------------------------------------------- /data/sofa-scan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/sofa-scan.txt -------------------------------------------------------------------------------- /data/vase-nested-curves.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/vase-nested-curves.obj -------------------------------------------------------------------------------- /data/vase-nested-curves.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/data/vase-nested-curves.txt -------------------------------------------------------------------------------- /export/GSD.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/export/GSD.obj -------------------------------------------------------------------------------- /export/colormap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/export/colormap.png -------------------------------------------------------------------------------- /export/curves.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/export/curves.obj -------------------------------------------------------------------------------- /export/points.obj: -------------------------------------------------------------------------------- 1 | v 2.89199 17.8082 31.8443 2 | -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/include/utils.h -------------------------------------------------------------------------------- /media/Blender.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/media/Blender.png -------------------------------------------------------------------------------- /media/Example.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/media/Example.blend -------------------------------------------------------------------------------- /media/IntrinsicRemesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/media/IntrinsicRemesh.png -------------------------------------------------------------------------------- /media/Teaser.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/media/Teaser.pdf -------------------------------------------------------------------------------- /media/Teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/media/Teaser.png -------------------------------------------------------------------------------- /media/point-cloud.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/media/point-cloud.png -------------------------------------------------------------------------------- /media/polygon-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/media/polygon-mesh.png -------------------------------------------------------------------------------- /media/triangle-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/media/triangle-mesh.png -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nzfeng/signed-heat-demo/HEAD/src/utils.cpp --------------------------------------------------------------------------------