├── .gitignore ├── AdaptiveSolvers.sln ├── AdaptiveTreeVisualization.vcxproj ├── ChunkPLY.vcxproj ├── EDTInHeat.vcxproj ├── ImageStitching.vcxproj ├── JPEG.vcxproj ├── JPEG ├── Makefile ├── ckconfig.cpp ├── jcapimin.cpp ├── jcapistd.cpp ├── jccoefct.cpp ├── jccolor.cpp ├── jcdctmgr.cpp ├── jchuff.cpp ├── jchuff.h ├── jcinit.cpp ├── jcmainct.cpp ├── jcmarker.cpp ├── jcmaster.cpp ├── jcomapi.cpp ├── jconfig.h ├── jcparam.cpp ├── jcphuff.cpp ├── jcprepct.cpp ├── jcsample.cpp ├── jctrans.cpp ├── jdapimin.cpp ├── jdapistd.cpp ├── jdatadst.cpp ├── jdatasrc.cpp ├── jdcoefct.cpp ├── jdcolor.cpp ├── jdct.h ├── jddctmgr.cpp ├── jdhuff.cpp ├── jdhuff.h ├── jdinput.cpp ├── jdmainct.cpp ├── jdmarker.cpp ├── jdmaster.cpp ├── jdmerge.cpp ├── jdphuff.cpp ├── jdpostct.cpp ├── jdsample.cpp ├── jdtrans.cpp ├── jerror.cpp ├── jerror.h ├── jfdctflt.cpp ├── jfdctfst.cpp ├── jfdctint.cpp ├── jidctflt.cpp ├── jidctfst.cpp ├── jidctint.cpp ├── jidctred.cpp ├── jinclude.h ├── jmemmgr.cpp ├── jmemnobs.cpp ├── jmemsys.h ├── jmorecfg.h ├── jpegint.h ├── jpeglib.h ├── jquant1.cpp ├── jquant2.cpp ├── jutils.cpp └── jversion.h ├── LICENSE ├── Makefile ├── PNG.vcxproj ├── PNG ├── Makefile ├── png.c ├── png.h ├── pngasmrd.h ├── pngconf.h ├── pngerror.c ├── pnggccrd.c ├── pngget.c ├── pngmem.c ├── pngpread.c ├── pngread.c ├── pngrio.c ├── pngrtran.c ├── pngrutil.c ├── pngset.c ├── pngtest.c ├── pngtrans.c ├── pngvcrd.c ├── pngwio.c ├── pngwrite.c ├── pngwtran.c └── pngwutil.c ├── PointInterpolant.vcxproj ├── PointsToDisks.vcxproj ├── PoissonRecon.vcxproj ├── PoissonReconClient.vcxproj ├── PoissonReconServer.vcxproj ├── README.md ├── Reconstruction.example.vcxproj ├── SSDRecon.vcxproj ├── ScaleNormals.vcxproj ├── Src ├── AdaptiveTreeVisualization.cpp ├── Allocator.h ├── Array.h ├── Array.inl ├── BSplineData.h ├── BSplineData.inl ├── BinaryNode.h ├── BlockedVector.h ├── ChunkPLY.cpp ├── CmdLineParser.h ├── CmdLineParser.inl ├── DataStream.h ├── DataStream.imp.h ├── DataStream.imp.inl ├── DataStream.inl ├── EDTInHeat.cpp ├── Extrapolator.h ├── FEMTree.Evaluation.inl ├── FEMTree.Initialize.inl ├── FEMTree.LevelSet.2D.inl ├── FEMTree.LevelSet.3D.inl ├── FEMTree.LevelSet.inl ├── FEMTree.SortedTreeNodes.inl ├── FEMTree.System.inl ├── FEMTree.WeightedSamples.inl ├── FEMTree.h ├── FEMTree.inl ├── Factor.h ├── Geometry.h ├── Geometry.inl ├── Image.h ├── ImageStitching.cpp ├── JPEG.h ├── JPEG.inl ├── LinearSolvers.h ├── MAT.h ├── MAT.inl ├── MarchingCubes.h ├── MergePlyClientServer.h ├── MergePlyClientServer.inl ├── MultiThreading.h ├── MyAtomic.h ├── MyExceptions.h ├── MyMiscellany.h ├── NestedVector.h ├── PNG.h ├── PNG.inl ├── PPolynomial.h ├── PPolynomial.inl ├── ParameterPack.h ├── Ply.h ├── Ply.inl ├── PlyFile.h ├── PlyFile.inl ├── PointExtent.h ├── PointExtent.inl ├── PointInterpolant.cpp ├── PointPartition.h ├── PointPartition.inl ├── PointPartitionClientServer.h ├── PointPartitionClientServer.inl ├── PointsToDisks.cpp ├── PoissonRecon.client.inl ├── PoissonRecon.cpp ├── PoissonRecon.server.inl ├── PoissonReconClient.cpp ├── PoissonReconClientServer.h ├── PoissonReconClientServer.inl ├── PoissonReconServer.cpp ├── Polynomial.h ├── Polynomial.inl ├── PreProcessor.h ├── Rasterizer.h ├── Rasterizer.inl ├── Reconstruction.example.cpp ├── Reconstructors.h ├── Reconstructors.streams.h ├── RegularGrid.h ├── RegularGrid.inl ├── RegularTree.h ├── RegularTree.inl ├── SSDRecon.cpp ├── ScaleNormals.cpp ├── Socket.h ├── Socket.inl ├── SparseMatrix.h ├── SparseMatrix.inl ├── SparseMatrixInterface.h ├── SparseMatrixInterface.inl ├── Streams.h ├── SurfaceTrimmer.cpp ├── VertexFactory.h ├── VertexFactory.inl ├── Window.h └── Window.inl ├── SurfaceTrimmer.vcxproj ├── ZLIB.vcxproj └── ZLIB ├── Makefile ├── adler32.c ├── compress.c ├── crc32.c ├── crc32.h ├── deflate.c ├── deflate.h ├── gzclose.c ├── gzguts.h ├── gzlib.c ├── gzread.c ├── gzwrite.c ├── infback.c ├── inffast.c ├── inffast.h ├── inffixed.h ├── inflate.c ├── inflate.h ├── inftrees.c ├── inftrees.h ├── trees.c ├── trees.h ├── uncompr.c ├── zconf.h ├── zlib.h ├── zutil.c └── zutil.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/.gitignore -------------------------------------------------------------------------------- /AdaptiveSolvers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/AdaptiveSolvers.sln -------------------------------------------------------------------------------- /AdaptiveTreeVisualization.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/AdaptiveTreeVisualization.vcxproj -------------------------------------------------------------------------------- /ChunkPLY.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ChunkPLY.vcxproj -------------------------------------------------------------------------------- /EDTInHeat.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/EDTInHeat.vcxproj -------------------------------------------------------------------------------- /ImageStitching.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ImageStitching.vcxproj -------------------------------------------------------------------------------- /JPEG.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG.vcxproj -------------------------------------------------------------------------------- /JPEG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/Makefile -------------------------------------------------------------------------------- /JPEG/ckconfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/ckconfig.cpp -------------------------------------------------------------------------------- /JPEG/jcapimin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcapimin.cpp -------------------------------------------------------------------------------- /JPEG/jcapistd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcapistd.cpp -------------------------------------------------------------------------------- /JPEG/jccoefct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jccoefct.cpp -------------------------------------------------------------------------------- /JPEG/jccolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jccolor.cpp -------------------------------------------------------------------------------- /JPEG/jcdctmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcdctmgr.cpp -------------------------------------------------------------------------------- /JPEG/jchuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jchuff.cpp -------------------------------------------------------------------------------- /JPEG/jchuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jchuff.h -------------------------------------------------------------------------------- /JPEG/jcinit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcinit.cpp -------------------------------------------------------------------------------- /JPEG/jcmainct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcmainct.cpp -------------------------------------------------------------------------------- /JPEG/jcmarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcmarker.cpp -------------------------------------------------------------------------------- /JPEG/jcmaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcmaster.cpp -------------------------------------------------------------------------------- /JPEG/jcomapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcomapi.cpp -------------------------------------------------------------------------------- /JPEG/jconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jconfig.h -------------------------------------------------------------------------------- /JPEG/jcparam.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcparam.cpp -------------------------------------------------------------------------------- /JPEG/jcphuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcphuff.cpp -------------------------------------------------------------------------------- /JPEG/jcprepct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcprepct.cpp -------------------------------------------------------------------------------- /JPEG/jcsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jcsample.cpp -------------------------------------------------------------------------------- /JPEG/jctrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jctrans.cpp -------------------------------------------------------------------------------- /JPEG/jdapimin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdapimin.cpp -------------------------------------------------------------------------------- /JPEG/jdapistd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdapistd.cpp -------------------------------------------------------------------------------- /JPEG/jdatadst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdatadst.cpp -------------------------------------------------------------------------------- /JPEG/jdatasrc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdatasrc.cpp -------------------------------------------------------------------------------- /JPEG/jdcoefct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdcoefct.cpp -------------------------------------------------------------------------------- /JPEG/jdcolor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdcolor.cpp -------------------------------------------------------------------------------- /JPEG/jdct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdct.h -------------------------------------------------------------------------------- /JPEG/jddctmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jddctmgr.cpp -------------------------------------------------------------------------------- /JPEG/jdhuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdhuff.cpp -------------------------------------------------------------------------------- /JPEG/jdhuff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdhuff.h -------------------------------------------------------------------------------- /JPEG/jdinput.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdinput.cpp -------------------------------------------------------------------------------- /JPEG/jdmainct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdmainct.cpp -------------------------------------------------------------------------------- /JPEG/jdmarker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdmarker.cpp -------------------------------------------------------------------------------- /JPEG/jdmaster.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdmaster.cpp -------------------------------------------------------------------------------- /JPEG/jdmerge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdmerge.cpp -------------------------------------------------------------------------------- /JPEG/jdphuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdphuff.cpp -------------------------------------------------------------------------------- /JPEG/jdpostct.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdpostct.cpp -------------------------------------------------------------------------------- /JPEG/jdsample.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdsample.cpp -------------------------------------------------------------------------------- /JPEG/jdtrans.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jdtrans.cpp -------------------------------------------------------------------------------- /JPEG/jerror.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jerror.cpp -------------------------------------------------------------------------------- /JPEG/jerror.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jerror.h -------------------------------------------------------------------------------- /JPEG/jfdctflt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jfdctflt.cpp -------------------------------------------------------------------------------- /JPEG/jfdctfst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jfdctfst.cpp -------------------------------------------------------------------------------- /JPEG/jfdctint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jfdctint.cpp -------------------------------------------------------------------------------- /JPEG/jidctflt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jidctflt.cpp -------------------------------------------------------------------------------- /JPEG/jidctfst.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jidctfst.cpp -------------------------------------------------------------------------------- /JPEG/jidctint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jidctint.cpp -------------------------------------------------------------------------------- /JPEG/jidctred.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jidctred.cpp -------------------------------------------------------------------------------- /JPEG/jinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jinclude.h -------------------------------------------------------------------------------- /JPEG/jmemmgr.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jmemmgr.cpp -------------------------------------------------------------------------------- /JPEG/jmemnobs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jmemnobs.cpp -------------------------------------------------------------------------------- /JPEG/jmemsys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jmemsys.h -------------------------------------------------------------------------------- /JPEG/jmorecfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jmorecfg.h -------------------------------------------------------------------------------- /JPEG/jpegint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jpegint.h -------------------------------------------------------------------------------- /JPEG/jpeglib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jpeglib.h -------------------------------------------------------------------------------- /JPEG/jquant1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jquant1.cpp -------------------------------------------------------------------------------- /JPEG/jquant2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jquant2.cpp -------------------------------------------------------------------------------- /JPEG/jutils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jutils.cpp -------------------------------------------------------------------------------- /JPEG/jversion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/JPEG/jversion.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Makefile -------------------------------------------------------------------------------- /PNG.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG.vcxproj -------------------------------------------------------------------------------- /PNG/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/Makefile -------------------------------------------------------------------------------- /PNG/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/png.c -------------------------------------------------------------------------------- /PNG/png.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/png.h -------------------------------------------------------------------------------- /PNG/pngasmrd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngasmrd.h -------------------------------------------------------------------------------- /PNG/pngconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngconf.h -------------------------------------------------------------------------------- /PNG/pngerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngerror.c -------------------------------------------------------------------------------- /PNG/pnggccrd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pnggccrd.c -------------------------------------------------------------------------------- /PNG/pngget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngget.c -------------------------------------------------------------------------------- /PNG/pngmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngmem.c -------------------------------------------------------------------------------- /PNG/pngpread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngpread.c -------------------------------------------------------------------------------- /PNG/pngread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngread.c -------------------------------------------------------------------------------- /PNG/pngrio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngrio.c -------------------------------------------------------------------------------- /PNG/pngrtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngrtran.c -------------------------------------------------------------------------------- /PNG/pngrutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngrutil.c -------------------------------------------------------------------------------- /PNG/pngset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngset.c -------------------------------------------------------------------------------- /PNG/pngtest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngtest.c -------------------------------------------------------------------------------- /PNG/pngtrans.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngtrans.c -------------------------------------------------------------------------------- /PNG/pngvcrd.c: -------------------------------------------------------------------------------- 1 | /* pnggvrd.c was removed from libpng-1.2.20. */ 2 | -------------------------------------------------------------------------------- /PNG/pngwio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngwio.c -------------------------------------------------------------------------------- /PNG/pngwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngwrite.c -------------------------------------------------------------------------------- /PNG/pngwtran.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngwtran.c -------------------------------------------------------------------------------- /PNG/pngwutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PNG/pngwutil.c -------------------------------------------------------------------------------- /PointInterpolant.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PointInterpolant.vcxproj -------------------------------------------------------------------------------- /PointsToDisks.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PointsToDisks.vcxproj -------------------------------------------------------------------------------- /PoissonRecon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PoissonRecon.vcxproj -------------------------------------------------------------------------------- /PoissonReconClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PoissonReconClient.vcxproj -------------------------------------------------------------------------------- /PoissonReconServer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/PoissonReconServer.vcxproj -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/README.md -------------------------------------------------------------------------------- /Reconstruction.example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Reconstruction.example.vcxproj -------------------------------------------------------------------------------- /SSDRecon.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/SSDRecon.vcxproj -------------------------------------------------------------------------------- /ScaleNormals.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ScaleNormals.vcxproj -------------------------------------------------------------------------------- /Src/AdaptiveTreeVisualization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/AdaptiveTreeVisualization.cpp -------------------------------------------------------------------------------- /Src/Allocator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Allocator.h -------------------------------------------------------------------------------- /Src/Array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Array.h -------------------------------------------------------------------------------- /Src/Array.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Array.inl -------------------------------------------------------------------------------- /Src/BSplineData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/BSplineData.h -------------------------------------------------------------------------------- /Src/BSplineData.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/BSplineData.inl -------------------------------------------------------------------------------- /Src/BinaryNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/BinaryNode.h -------------------------------------------------------------------------------- /Src/BlockedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/BlockedVector.h -------------------------------------------------------------------------------- /Src/ChunkPLY.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/ChunkPLY.cpp -------------------------------------------------------------------------------- /Src/CmdLineParser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/CmdLineParser.h -------------------------------------------------------------------------------- /Src/CmdLineParser.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/CmdLineParser.inl -------------------------------------------------------------------------------- /Src/DataStream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/DataStream.h -------------------------------------------------------------------------------- /Src/DataStream.imp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/DataStream.imp.h -------------------------------------------------------------------------------- /Src/DataStream.imp.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/DataStream.imp.inl -------------------------------------------------------------------------------- /Src/DataStream.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/DataStream.inl -------------------------------------------------------------------------------- /Src/EDTInHeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/EDTInHeat.cpp -------------------------------------------------------------------------------- /Src/Extrapolator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Extrapolator.h -------------------------------------------------------------------------------- /Src/FEMTree.Evaluation.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/FEMTree.Evaluation.inl -------------------------------------------------------------------------------- /Src/FEMTree.Initialize.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/FEMTree.Initialize.inl -------------------------------------------------------------------------------- /Src/FEMTree.LevelSet.2D.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/FEMTree.LevelSet.2D.inl -------------------------------------------------------------------------------- /Src/FEMTree.LevelSet.3D.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/FEMTree.LevelSet.3D.inl -------------------------------------------------------------------------------- /Src/FEMTree.LevelSet.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/FEMTree.LevelSet.inl -------------------------------------------------------------------------------- /Src/FEMTree.SortedTreeNodes.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/FEMTree.SortedTreeNodes.inl -------------------------------------------------------------------------------- /Src/FEMTree.System.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/FEMTree.System.inl -------------------------------------------------------------------------------- /Src/FEMTree.WeightedSamples.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/FEMTree.WeightedSamples.inl -------------------------------------------------------------------------------- /Src/FEMTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/FEMTree.h -------------------------------------------------------------------------------- /Src/FEMTree.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/FEMTree.inl -------------------------------------------------------------------------------- /Src/Factor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Factor.h -------------------------------------------------------------------------------- /Src/Geometry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Geometry.h -------------------------------------------------------------------------------- /Src/Geometry.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Geometry.inl -------------------------------------------------------------------------------- /Src/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Image.h -------------------------------------------------------------------------------- /Src/ImageStitching.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/ImageStitching.cpp -------------------------------------------------------------------------------- /Src/JPEG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/JPEG.h -------------------------------------------------------------------------------- /Src/JPEG.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/JPEG.inl -------------------------------------------------------------------------------- /Src/LinearSolvers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/LinearSolvers.h -------------------------------------------------------------------------------- /Src/MAT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/MAT.h -------------------------------------------------------------------------------- /Src/MAT.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/MAT.inl -------------------------------------------------------------------------------- /Src/MarchingCubes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/MarchingCubes.h -------------------------------------------------------------------------------- /Src/MergePlyClientServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/MergePlyClientServer.h -------------------------------------------------------------------------------- /Src/MergePlyClientServer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/MergePlyClientServer.inl -------------------------------------------------------------------------------- /Src/MultiThreading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/MultiThreading.h -------------------------------------------------------------------------------- /Src/MyAtomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/MyAtomic.h -------------------------------------------------------------------------------- /Src/MyExceptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/MyExceptions.h -------------------------------------------------------------------------------- /Src/MyMiscellany.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/MyMiscellany.h -------------------------------------------------------------------------------- /Src/NestedVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/NestedVector.h -------------------------------------------------------------------------------- /Src/PNG.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PNG.h -------------------------------------------------------------------------------- /Src/PNG.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PNG.inl -------------------------------------------------------------------------------- /Src/PPolynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PPolynomial.h -------------------------------------------------------------------------------- /Src/PPolynomial.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PPolynomial.inl -------------------------------------------------------------------------------- /Src/ParameterPack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/ParameterPack.h -------------------------------------------------------------------------------- /Src/Ply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Ply.h -------------------------------------------------------------------------------- /Src/Ply.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Ply.inl -------------------------------------------------------------------------------- /Src/PlyFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PlyFile.h -------------------------------------------------------------------------------- /Src/PlyFile.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PlyFile.inl -------------------------------------------------------------------------------- /Src/PointExtent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PointExtent.h -------------------------------------------------------------------------------- /Src/PointExtent.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PointExtent.inl -------------------------------------------------------------------------------- /Src/PointInterpolant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PointInterpolant.cpp -------------------------------------------------------------------------------- /Src/PointPartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PointPartition.h -------------------------------------------------------------------------------- /Src/PointPartition.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PointPartition.inl -------------------------------------------------------------------------------- /Src/PointPartitionClientServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PointPartitionClientServer.h -------------------------------------------------------------------------------- /Src/PointPartitionClientServer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PointPartitionClientServer.inl -------------------------------------------------------------------------------- /Src/PointsToDisks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PointsToDisks.cpp -------------------------------------------------------------------------------- /Src/PoissonRecon.client.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PoissonRecon.client.inl -------------------------------------------------------------------------------- /Src/PoissonRecon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PoissonRecon.cpp -------------------------------------------------------------------------------- /Src/PoissonRecon.server.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PoissonRecon.server.inl -------------------------------------------------------------------------------- /Src/PoissonReconClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PoissonReconClient.cpp -------------------------------------------------------------------------------- /Src/PoissonReconClientServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PoissonReconClientServer.h -------------------------------------------------------------------------------- /Src/PoissonReconClientServer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PoissonReconClientServer.inl -------------------------------------------------------------------------------- /Src/PoissonReconServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PoissonReconServer.cpp -------------------------------------------------------------------------------- /Src/Polynomial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Polynomial.h -------------------------------------------------------------------------------- /Src/Polynomial.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Polynomial.inl -------------------------------------------------------------------------------- /Src/PreProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/PreProcessor.h -------------------------------------------------------------------------------- /Src/Rasterizer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Rasterizer.h -------------------------------------------------------------------------------- /Src/Rasterizer.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Rasterizer.inl -------------------------------------------------------------------------------- /Src/Reconstruction.example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Reconstruction.example.cpp -------------------------------------------------------------------------------- /Src/Reconstructors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Reconstructors.h -------------------------------------------------------------------------------- /Src/Reconstructors.streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Reconstructors.streams.h -------------------------------------------------------------------------------- /Src/RegularGrid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/RegularGrid.h -------------------------------------------------------------------------------- /Src/RegularGrid.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/RegularGrid.inl -------------------------------------------------------------------------------- /Src/RegularTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/RegularTree.h -------------------------------------------------------------------------------- /Src/RegularTree.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/RegularTree.inl -------------------------------------------------------------------------------- /Src/SSDRecon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/SSDRecon.cpp -------------------------------------------------------------------------------- /Src/ScaleNormals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/ScaleNormals.cpp -------------------------------------------------------------------------------- /Src/Socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Socket.h -------------------------------------------------------------------------------- /Src/Socket.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Socket.inl -------------------------------------------------------------------------------- /Src/SparseMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/SparseMatrix.h -------------------------------------------------------------------------------- /Src/SparseMatrix.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/SparseMatrix.inl -------------------------------------------------------------------------------- /Src/SparseMatrixInterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/SparseMatrixInterface.h -------------------------------------------------------------------------------- /Src/SparseMatrixInterface.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/SparseMatrixInterface.inl -------------------------------------------------------------------------------- /Src/Streams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Streams.h -------------------------------------------------------------------------------- /Src/SurfaceTrimmer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/SurfaceTrimmer.cpp -------------------------------------------------------------------------------- /Src/VertexFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/VertexFactory.h -------------------------------------------------------------------------------- /Src/VertexFactory.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/VertexFactory.inl -------------------------------------------------------------------------------- /Src/Window.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Window.h -------------------------------------------------------------------------------- /Src/Window.inl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/Src/Window.inl -------------------------------------------------------------------------------- /SurfaceTrimmer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/SurfaceTrimmer.vcxproj -------------------------------------------------------------------------------- /ZLIB.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB.vcxproj -------------------------------------------------------------------------------- /ZLIB/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/Makefile -------------------------------------------------------------------------------- /ZLIB/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/adler32.c -------------------------------------------------------------------------------- /ZLIB/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/compress.c -------------------------------------------------------------------------------- /ZLIB/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/crc32.c -------------------------------------------------------------------------------- /ZLIB/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/crc32.h -------------------------------------------------------------------------------- /ZLIB/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/deflate.c -------------------------------------------------------------------------------- /ZLIB/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/deflate.h -------------------------------------------------------------------------------- /ZLIB/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/gzclose.c -------------------------------------------------------------------------------- /ZLIB/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/gzguts.h -------------------------------------------------------------------------------- /ZLIB/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/gzlib.c -------------------------------------------------------------------------------- /ZLIB/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/gzread.c -------------------------------------------------------------------------------- /ZLIB/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/gzwrite.c -------------------------------------------------------------------------------- /ZLIB/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/infback.c -------------------------------------------------------------------------------- /ZLIB/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/inffast.c -------------------------------------------------------------------------------- /ZLIB/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/inffast.h -------------------------------------------------------------------------------- /ZLIB/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/inffixed.h -------------------------------------------------------------------------------- /ZLIB/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/inflate.c -------------------------------------------------------------------------------- /ZLIB/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/inflate.h -------------------------------------------------------------------------------- /ZLIB/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/inftrees.c -------------------------------------------------------------------------------- /ZLIB/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/inftrees.h -------------------------------------------------------------------------------- /ZLIB/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/trees.c -------------------------------------------------------------------------------- /ZLIB/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/trees.h -------------------------------------------------------------------------------- /ZLIB/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/uncompr.c -------------------------------------------------------------------------------- /ZLIB/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/zconf.h -------------------------------------------------------------------------------- /ZLIB/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/zlib.h -------------------------------------------------------------------------------- /ZLIB/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/zutil.c -------------------------------------------------------------------------------- /ZLIB/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mkazhdan/PoissonRecon/HEAD/ZLIB/zutil.h --------------------------------------------------------------------------------