├── .gitignore ├── Assets ├── AR Default Point Cloud.prefab ├── AR Default Point Cloud.prefab.meta ├── Ball.prefab ├── Ball.prefab.meta ├── Ciconia Studio.meta ├── Ciconia Studio │ ├── Shaders.meta │ └── Shaders │ │ ├── Double Sided Shaders.meta │ │ └── Double Sided Shaders │ │ ├── Double Sided Emissive Diffuse.shader │ │ ├── Double Sided Emissive Diffuse.shader.meta │ │ ├── Double Sided Standard Diffuse Bump.shader │ │ ├── Double Sided Standard Diffuse Bump.shader.meta │ │ ├── Double Sided Transparent Diffuse Bump Cutout.shader │ │ ├── Double Sided Transparent Diffuse Bump Cutout.shader.meta │ │ ├── Double Sided Transparent Diffuse Bump.shader │ │ └── Double Sided Transparent Diffuse Bump.shader.meta ├── CloudPreview.cs ├── CloudPreview.cs.meta ├── CrustAlgorithm.meta ├── CrustAlgorithm │ ├── CrustMeshCreator.cs │ └── CrustMeshCreator.cs.meta ├── GlobalVars.cs ├── GlobalVars.cs.meta ├── IPDAlgoritm.meta ├── IPDAlgoritm │ ├── ConvexPolyhedron.cs │ ├── ConvexPolyhedron.cs.meta │ ├── Face.cs │ ├── Face.cs.meta │ ├── Figures.cs │ ├── Figures.cs.meta │ ├── IPDMeshCreator.cs │ ├── IPDMeshCreator.cs.meta │ ├── Overlapping.cs │ ├── Overlapping.cs.meta │ ├── Status.cs │ └── Status.cs.meta ├── Materials.meta ├── Materials │ ├── DiamondParticle.mat │ ├── DiamondParticle.mat.meta │ ├── GlowParticle.mat │ ├── GlowParticle.mat.meta │ ├── MRTK_SpatialProcessing_Transparent.mat │ ├── MRTK_SpatialProcessing_Transparent.mat.meta │ ├── MeshMaterial.mat │ ├── MeshMaterial.mat.meta │ ├── Red.mat │ ├── Red.mat.meta │ ├── Standard.shader │ ├── Standard.shader.meta │ ├── Voxel.mat │ ├── Voxel.mat.meta │ ├── VoxelEmpty.mat │ ├── VoxelEmpty.mat.meta │ ├── Wireframe (2).shader │ ├── Wireframe (2).shader.meta │ ├── Wireframe.mat │ ├── Wireframe.mat.meta │ ├── Wireframe.shader │ ├── Wireframe.shader.meta │ ├── WireframeTransparent.shader │ └── WireframeTransparent.shader.meta ├── MeshReconstructor.meta ├── MeshReconstructor │ ├── MeshVisualizer.cs │ ├── MeshVisualizer.cs.meta │ ├── PointCloudVisualizer.cs │ ├── PointCloudVisualizer.cs.meta │ ├── PointStorage.cs │ └── PointStorage.cs.meta ├── MyPointVisualizer.cs ├── MyPointVisualizer.cs.meta ├── Objects.meta ├── Objects │ ├── Voxel.prefab │ └── Voxel.prefab.meta ├── Particle.mat ├── Particle.mat.meta ├── Prefabs.meta ├── Prefabs │ ├── MeshReconstructor.prefab │ └── MeshReconstructor.prefab.meta ├── Scenes.meta ├── Scenes │ ├── ARScene.unity │ ├── ARScene.unity.meta │ ├── MeshPreview.unity │ └── MeshPreview.unity.meta ├── Scripts.meta ├── Scripts │ ├── ConvexHull.cs │ ├── ConvexHull.cs.meta │ ├── PointCloudVisual.cs │ ├── PointCloudVisual.cs.meta │ ├── SceneChanger.cs │ └── SceneChanger.cs.meta ├── Textures.meta ├── Textures │ ├── diamond.png │ ├── diamond.png.meta │ ├── glowOrb.png │ └── glowOrb.png.meta ├── VoxelSet.meta ├── VoxelSet │ ├── NewPointsArgs.cs │ ├── NewPointsArgs.cs.meta │ ├── Point.cs │ ├── Point.cs.meta │ ├── Triangle.cs │ ├── Triangle.cs.meta │ ├── VoxelSet.cs │ ├── VoxelSet.cs.meta │ ├── VoxelSet1.cs │ └── VoxelSet1.cs.meta ├── VoxelsVisualizer.cs └── VoxelsVisualizer.cs.meta ├── LICENSE ├── Logs └── Packages-Update.log ├── Packages └── manifest.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset ├── README.md ├── android.apk ├── startpoints.txt ├── startpoints1.txt ├── startpoints10.txt ├── startpoints11 ├── startpoints11.txt ├── startpoints2.txt ├── startpoints3.txt ├── startpoints4.txt ├── startpoints5.txt ├── startpoints6.txt ├── startpoints7.txt ├── startpoints8.txt └── startpoints9.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/AR Default Point Cloud.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/AR Default Point Cloud.prefab -------------------------------------------------------------------------------- /Assets/AR Default Point Cloud.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/AR Default Point Cloud.prefab.meta -------------------------------------------------------------------------------- /Assets/Ball.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ball.prefab -------------------------------------------------------------------------------- /Assets/Ball.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ball.prefab.meta -------------------------------------------------------------------------------- /Assets/Ciconia Studio.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio.meta -------------------------------------------------------------------------------- /Assets/Ciconia Studio/Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio/Shaders.meta -------------------------------------------------------------------------------- /Assets/Ciconia Studio/Shaders/Double Sided Shaders.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio/Shaders/Double Sided Shaders.meta -------------------------------------------------------------------------------- /Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Emissive Diffuse.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Emissive Diffuse.shader -------------------------------------------------------------------------------- /Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Emissive Diffuse.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Emissive Diffuse.shader.meta -------------------------------------------------------------------------------- /Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Standard Diffuse Bump.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Standard Diffuse Bump.shader -------------------------------------------------------------------------------- /Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Standard Diffuse Bump.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Standard Diffuse Bump.shader.meta -------------------------------------------------------------------------------- /Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Transparent Diffuse Bump Cutout.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Transparent Diffuse Bump Cutout.shader -------------------------------------------------------------------------------- /Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Transparent Diffuse Bump Cutout.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Transparent Diffuse Bump Cutout.shader.meta -------------------------------------------------------------------------------- /Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Transparent Diffuse Bump.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Transparent Diffuse Bump.shader -------------------------------------------------------------------------------- /Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Transparent Diffuse Bump.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Ciconia Studio/Shaders/Double Sided Shaders/Double Sided Transparent Diffuse Bump.shader.meta -------------------------------------------------------------------------------- /Assets/CloudPreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/CloudPreview.cs -------------------------------------------------------------------------------- /Assets/CloudPreview.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/CloudPreview.cs.meta -------------------------------------------------------------------------------- /Assets/CrustAlgorithm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/CrustAlgorithm.meta -------------------------------------------------------------------------------- /Assets/CrustAlgorithm/CrustMeshCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/CrustAlgorithm/CrustMeshCreator.cs -------------------------------------------------------------------------------- /Assets/CrustAlgorithm/CrustMeshCreator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/CrustAlgorithm/CrustMeshCreator.cs.meta -------------------------------------------------------------------------------- /Assets/GlobalVars.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/GlobalVars.cs -------------------------------------------------------------------------------- /Assets/GlobalVars.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/GlobalVars.cs.meta -------------------------------------------------------------------------------- /Assets/IPDAlgoritm.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm.meta -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/ConvexPolyhedron.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/ConvexPolyhedron.cs -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/ConvexPolyhedron.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/ConvexPolyhedron.cs.meta -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/Face.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/Face.cs -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/Face.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/Face.cs.meta -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/Figures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/Figures.cs -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/Figures.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/Figures.cs.meta -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/IPDMeshCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/IPDMeshCreator.cs -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/IPDMeshCreator.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/IPDMeshCreator.cs.meta -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/Overlapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/Overlapping.cs -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/Overlapping.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/Overlapping.cs.meta -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/Status.cs -------------------------------------------------------------------------------- /Assets/IPDAlgoritm/Status.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/IPDAlgoritm/Status.cs.meta -------------------------------------------------------------------------------- /Assets/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials.meta -------------------------------------------------------------------------------- /Assets/Materials/DiamondParticle.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/DiamondParticle.mat -------------------------------------------------------------------------------- /Assets/Materials/DiamondParticle.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/DiamondParticle.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/GlowParticle.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/GlowParticle.mat -------------------------------------------------------------------------------- /Assets/Materials/GlowParticle.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/GlowParticle.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/MRTK_SpatialProcessing_Transparent.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/MRTK_SpatialProcessing_Transparent.mat -------------------------------------------------------------------------------- /Assets/Materials/MRTK_SpatialProcessing_Transparent.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/MRTK_SpatialProcessing_Transparent.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/MeshMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/MeshMaterial.mat -------------------------------------------------------------------------------- /Assets/Materials/MeshMaterial.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/MeshMaterial.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Red.mat -------------------------------------------------------------------------------- /Assets/Materials/Red.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Red.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Standard.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Standard.shader -------------------------------------------------------------------------------- /Assets/Materials/Standard.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Standard.shader.meta -------------------------------------------------------------------------------- /Assets/Materials/Voxel.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Voxel.mat -------------------------------------------------------------------------------- /Assets/Materials/Voxel.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Voxel.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/VoxelEmpty.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/VoxelEmpty.mat -------------------------------------------------------------------------------- /Assets/Materials/VoxelEmpty.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/VoxelEmpty.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Wireframe (2).shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Wireframe (2).shader -------------------------------------------------------------------------------- /Assets/Materials/Wireframe (2).shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Wireframe (2).shader.meta -------------------------------------------------------------------------------- /Assets/Materials/Wireframe.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Wireframe.mat -------------------------------------------------------------------------------- /Assets/Materials/Wireframe.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Wireframe.mat.meta -------------------------------------------------------------------------------- /Assets/Materials/Wireframe.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Wireframe.shader -------------------------------------------------------------------------------- /Assets/Materials/Wireframe.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/Wireframe.shader.meta -------------------------------------------------------------------------------- /Assets/Materials/WireframeTransparent.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/WireframeTransparent.shader -------------------------------------------------------------------------------- /Assets/Materials/WireframeTransparent.shader.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Materials/WireframeTransparent.shader.meta -------------------------------------------------------------------------------- /Assets/MeshReconstructor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/MeshReconstructor.meta -------------------------------------------------------------------------------- /Assets/MeshReconstructor/MeshVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/MeshReconstructor/MeshVisualizer.cs -------------------------------------------------------------------------------- /Assets/MeshReconstructor/MeshVisualizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/MeshReconstructor/MeshVisualizer.cs.meta -------------------------------------------------------------------------------- /Assets/MeshReconstructor/PointCloudVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/MeshReconstructor/PointCloudVisualizer.cs -------------------------------------------------------------------------------- /Assets/MeshReconstructor/PointCloudVisualizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/MeshReconstructor/PointCloudVisualizer.cs.meta -------------------------------------------------------------------------------- /Assets/MeshReconstructor/PointStorage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/MeshReconstructor/PointStorage.cs -------------------------------------------------------------------------------- /Assets/MeshReconstructor/PointStorage.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/MeshReconstructor/PointStorage.cs.meta -------------------------------------------------------------------------------- /Assets/MyPointVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/MyPointVisualizer.cs -------------------------------------------------------------------------------- /Assets/MyPointVisualizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/MyPointVisualizer.cs.meta -------------------------------------------------------------------------------- /Assets/Objects.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Objects.meta -------------------------------------------------------------------------------- /Assets/Objects/Voxel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Objects/Voxel.prefab -------------------------------------------------------------------------------- /Assets/Objects/Voxel.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Objects/Voxel.prefab.meta -------------------------------------------------------------------------------- /Assets/Particle.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Particle.mat -------------------------------------------------------------------------------- /Assets/Particle.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Particle.mat.meta -------------------------------------------------------------------------------- /Assets/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Prefabs.meta -------------------------------------------------------------------------------- /Assets/Prefabs/MeshReconstructor.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Prefabs/MeshReconstructor.prefab -------------------------------------------------------------------------------- /Assets/Prefabs/MeshReconstructor.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Prefabs/MeshReconstructor.prefab.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/ARScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scenes/ARScene.unity -------------------------------------------------------------------------------- /Assets/Scenes/ARScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scenes/ARScene.unity.meta -------------------------------------------------------------------------------- /Assets/Scenes/MeshPreview.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scenes/MeshPreview.unity -------------------------------------------------------------------------------- /Assets/Scenes/MeshPreview.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scenes/MeshPreview.unity.meta -------------------------------------------------------------------------------- /Assets/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scripts.meta -------------------------------------------------------------------------------- /Assets/Scripts/ConvexHull.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scripts/ConvexHull.cs -------------------------------------------------------------------------------- /Assets/Scripts/ConvexHull.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scripts/ConvexHull.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/PointCloudVisual.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scripts/PointCloudVisual.cs -------------------------------------------------------------------------------- /Assets/Scripts/PointCloudVisual.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scripts/PointCloudVisual.cs.meta -------------------------------------------------------------------------------- /Assets/Scripts/SceneChanger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scripts/SceneChanger.cs -------------------------------------------------------------------------------- /Assets/Scripts/SceneChanger.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Scripts/SceneChanger.cs.meta -------------------------------------------------------------------------------- /Assets/Textures.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Textures.meta -------------------------------------------------------------------------------- /Assets/Textures/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Textures/diamond.png -------------------------------------------------------------------------------- /Assets/Textures/diamond.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Textures/diamond.png.meta -------------------------------------------------------------------------------- /Assets/Textures/glowOrb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Textures/glowOrb.png -------------------------------------------------------------------------------- /Assets/Textures/glowOrb.png.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/Textures/glowOrb.png.meta -------------------------------------------------------------------------------- /Assets/VoxelSet.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet.meta -------------------------------------------------------------------------------- /Assets/VoxelSet/NewPointsArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet/NewPointsArgs.cs -------------------------------------------------------------------------------- /Assets/VoxelSet/NewPointsArgs.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet/NewPointsArgs.cs.meta -------------------------------------------------------------------------------- /Assets/VoxelSet/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet/Point.cs -------------------------------------------------------------------------------- /Assets/VoxelSet/Point.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet/Point.cs.meta -------------------------------------------------------------------------------- /Assets/VoxelSet/Triangle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet/Triangle.cs -------------------------------------------------------------------------------- /Assets/VoxelSet/Triangle.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet/Triangle.cs.meta -------------------------------------------------------------------------------- /Assets/VoxelSet/VoxelSet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet/VoxelSet.cs -------------------------------------------------------------------------------- /Assets/VoxelSet/VoxelSet.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet/VoxelSet.cs.meta -------------------------------------------------------------------------------- /Assets/VoxelSet/VoxelSet1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet/VoxelSet1.cs -------------------------------------------------------------------------------- /Assets/VoxelSet/VoxelSet1.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelSet/VoxelSet1.cs.meta -------------------------------------------------------------------------------- /Assets/VoxelsVisualizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelsVisualizer.cs -------------------------------------------------------------------------------- /Assets/VoxelsVisualizer.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Assets/VoxelsVisualizer.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/LICENSE -------------------------------------------------------------------------------- /Logs/Packages-Update.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Logs/Packages-Update.log -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/README.md -------------------------------------------------------------------------------- /android.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/android.apk -------------------------------------------------------------------------------- /startpoints.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints.txt -------------------------------------------------------------------------------- /startpoints1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints1.txt -------------------------------------------------------------------------------- /startpoints10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints10.txt -------------------------------------------------------------------------------- /startpoints11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints11 -------------------------------------------------------------------------------- /startpoints11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints11.txt -------------------------------------------------------------------------------- /startpoints2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints2.txt -------------------------------------------------------------------------------- /startpoints3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints3.txt -------------------------------------------------------------------------------- /startpoints4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints4.txt -------------------------------------------------------------------------------- /startpoints5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints5.txt -------------------------------------------------------------------------------- /startpoints6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints6.txt -------------------------------------------------------------------------------- /startpoints7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints7.txt -------------------------------------------------------------------------------- /startpoints8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints8.txt -------------------------------------------------------------------------------- /startpoints9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artembakhanov/Mesh-Reconstruction/HEAD/startpoints9.txt --------------------------------------------------------------------------------