DeepSDFStruct 1.7.2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (165) hide show
  1. DeepSDFStruct/SDF.py +1734 -0
  2. DeepSDFStruct/__init__.py +66 -0
  3. DeepSDFStruct/deep_sdf/__init__.py +69 -0
  4. DeepSDFStruct/deep_sdf/create_screenshots_from_plyfiles.py +65 -0
  5. DeepSDFStruct/deep_sdf/data.py +258 -0
  6. DeepSDFStruct/deep_sdf/metrics/__init__.py +14 -0
  7. DeepSDFStruct/deep_sdf/metrics/mesh_to_analytical.py +24 -0
  8. DeepSDFStruct/deep_sdf/models.py +197 -0
  9. DeepSDFStruct/deep_sdf/networks/__init__.py +8 -0
  10. DeepSDFStruct/deep_sdf/networks/analytic_round_cross.py +105 -0
  11. DeepSDFStruct/deep_sdf/networks/deep_sdf_decoder.py +155 -0
  12. DeepSDFStruct/deep_sdf/networks/hierarchical_deep_sdf_decoder.py +139 -0
  13. DeepSDFStruct/deep_sdf/networks/hierarchical_positional_sdf_decoder.py +190 -0
  14. DeepSDFStruct/deep_sdf/networks/resnet_positional_sdf_decoder.py +108 -0
  15. DeepSDFStruct/deep_sdf/nn_utils.py +70 -0
  16. DeepSDFStruct/deep_sdf/plotting.py +143 -0
  17. DeepSDFStruct/deep_sdf/reconstruction.py +165 -0
  18. DeepSDFStruct/deep_sdf/training.py +840 -0
  19. DeepSDFStruct/deep_sdf/workspace.py +363 -0
  20. DeepSDFStruct/design_of_experiments.py +235 -0
  21. DeepSDFStruct/flexicubes/__init__.py +15 -0
  22. DeepSDFStruct/flexicubes/flexicubes.py +1005 -0
  23. DeepSDFStruct/flexicubes/tables.py +2338 -0
  24. DeepSDFStruct/flexisquares/__init__.py +15 -0
  25. DeepSDFStruct/flexisquares/flexisquares.py +967 -0
  26. DeepSDFStruct/flexisquares/tables.py +63 -0
  27. DeepSDFStruct/lattice_structure.py +254 -0
  28. DeepSDFStruct/local_shapes.py +226 -0
  29. DeepSDFStruct/mesh.py +1184 -0
  30. DeepSDFStruct/optimization.py +357 -0
  31. DeepSDFStruct/parametrization.py +215 -0
  32. DeepSDFStruct/pretrained_models.py +128 -0
  33. DeepSDFStruct/sampling.py +670 -0
  34. DeepSDFStruct/sdf_operations.py +990 -0
  35. DeepSDFStruct/sdf_primitives.py +1416 -0
  36. DeepSDFStruct/splinepy_unitcells/__init__.py +35 -0
  37. DeepSDFStruct/splinepy_unitcells/chi_3D.py +1617 -0
  38. DeepSDFStruct/splinepy_unitcells/cross_lattice.py +165 -0
  39. DeepSDFStruct/splinepy_unitcells/double_lattice_extruded.py +298 -0
  40. DeepSDFStruct/splinepy_unitcells/snappy_3d.py +544 -0
  41. DeepSDFStruct/torch_spline.py +446 -0
  42. DeepSDFStruct/trained_models/analytic_round_cross/LatentCodes/latest.pth +0 -0
  43. DeepSDFStruct/trained_models/analytic_round_cross/ModelParameters/latest.pth +0 -0
  44. DeepSDFStruct/trained_models/analytic_round_cross/OptimizerParameters/latest.pth +0 -0
  45. DeepSDFStruct/trained_models/analytic_round_cross/specs.json +45 -0
  46. DeepSDFStruct/trained_models/chi_and_cross/LatentCodes/latest.pth +0 -0
  47. DeepSDFStruct/trained_models/chi_and_cross/Logs.pth +0 -0
  48. DeepSDFStruct/trained_models/chi_and_cross/ModelParameters/latest.pth +0 -0
  49. DeepSDFStruct/trained_models/chi_and_cross/OptimizerParameters/latest.pth +0 -0
  50. DeepSDFStruct/trained_models/chi_and_cross/specs.json +76 -0
  51. DeepSDFStruct/trained_models/primitives/LatentCodes/latest.pth +0 -0
  52. DeepSDFStruct/trained_models/primitives/ModelParameters/latest.pth +0 -0
  53. DeepSDFStruct/trained_models/primitives/OptimizerParameters/latest.pth +0 -0
  54. DeepSDFStruct/trained_models/primitives/specs.json +46 -0
  55. DeepSDFStruct/trained_models/primitives_2d/LatentCodes/latest.pth +0 -0
  56. DeepSDFStruct/trained_models/primitives_2d/ModelParameters/latest.pth +0 -0
  57. DeepSDFStruct/trained_models/primitives_2d/OptimizerParameters/latest.pth +0 -0
  58. DeepSDFStruct/trained_models/primitives_2d/specs.json +46 -0
  59. DeepSDFStruct/trained_models/round_cross/LatentCodes/latest.pth +0 -0
  60. DeepSDFStruct/trained_models/round_cross/Logs.pth +0 -0
  61. DeepSDFStruct/trained_models/round_cross/ModelParameters/latest.pth +0 -0
  62. DeepSDFStruct/trained_models/round_cross/OptimizerParameters/latest.pth +0 -0
  63. DeepSDFStruct/trained_models/round_cross/specs.json +45 -0
  64. DeepSDFStruct/trained_models/test_experiment/LatentCodes/latent_code_data_map.json +106 -0
  65. DeepSDFStruct/trained_models/test_experiment/specs.json +45 -0
  66. DeepSDFStruct/trained_models/test_experiment/training_summary.json +10 -0
  67. DeepSDFStruct/trained_models/test_experiment_hierarchical/LatentCodes/latent_code_data_map.json +106 -0
  68. DeepSDFStruct/trained_models/test_experiment_hierarchical/specs.json +45 -0
  69. DeepSDFStruct/trained_models/test_experiment_hierarchical/training_summary.json +10 -0
  70. DeepSDFStruct/trained_models/test_experiment_homogenization/LatentCodes/latent_code_data_map.json +5006 -0
  71. DeepSDFStruct/trained_models/test_experiment_homogenization/LatentCodes/latest.pth +0 -0
  72. DeepSDFStruct/trained_models/test_experiment_homogenization/Logs.png +0 -0
  73. DeepSDFStruct/trained_models/test_experiment_homogenization/ModelParameters/latest.pth +0 -0
  74. DeepSDFStruct/trained_models/test_experiment_homogenization/OptimizerParameters/latest.pth +0 -0
  75. DeepSDFStruct/trained_models/test_experiment_homogenization/specs.json +83 -0
  76. DeepSDFStruct/trained_models/test_experiment_homogenization/training_summary.json +10 -0
  77. DeepSDFStruct/utils.py +96 -0
  78. DeepSDFStruct/visualization/latent_viewer.py +211 -0
  79. DeepSDFStruct/visualization/latent_viewer_cli.py +8 -0
  80. benchmarks/generate_sdf_showcase.py +622 -0
  81. benchmarks/sdf_from_mesh_benchmark.py +52 -0
  82. benchmarks/sdf_from_mesh_comparison.md +33 -0
  83. benchmarks/sdf_showcase/operations/boolean/difference_sphere_box.png +0 -0
  84. benchmarks/sdf_showcase/operations/boolean/union_sphere_box.png +0 -0
  85. benchmarks/sdf_showcase/operations/transformations/circular_array_sphere.png +0 -0
  86. benchmarks/sdf_showcase/operations/transformations/dilate_sphere.png +0 -0
  87. benchmarks/sdf_showcase/operations/transformations/mirror_sphere.png +0 -0
  88. benchmarks/sdf_showcase/operations/transformations/repeat_sphere.png +0 -0
  89. benchmarks/sdf_showcase/operations/transformations/revolve_circle.png +0 -0
  90. benchmarks/sdf_showcase/operations/transformations/shell_sphere.png +0 -0
  91. benchmarks/sdf_showcase/operations/transformations/twist_torus.png +0 -0
  92. benchmarks/sdf_showcase/primitives/2D/circle.png +0 -0
  93. benchmarks/sdf_showcase/primitives/2D/equilateral_triangle.png +0 -0
  94. benchmarks/sdf_showcase/primitives/2D/hexagon.png +0 -0
  95. benchmarks/sdf_showcase/primitives/2D/polygon_pentagon.png +0 -0
  96. benchmarks/sdf_showcase/primitives/2D/rectangle.png +0 -0
  97. benchmarks/sdf_showcase/primitives/2D/rounded_rectangle.png +0 -0
  98. benchmarks/sdf_showcase/primitives/3D/box.png +0 -0
  99. benchmarks/sdf_showcase/primitives/3D/capped_cone.png +0 -0
  100. benchmarks/sdf_showcase/primitives/3D/capped_cylinder.png +0 -0
  101. benchmarks/sdf_showcase/primitives/3D/capsule.png +0 -0
  102. benchmarks/sdf_showcase/primitives/3D/cone.png +0 -0
  103. benchmarks/sdf_showcase/primitives/3D/corner_spheres.png +0 -0
  104. benchmarks/sdf_showcase/primitives/3D/cross_ms.png +0 -0
  105. benchmarks/sdf_showcase/primitives/3D/cylinder.png +0 -0
  106. benchmarks/sdf_showcase/primitives/3D/dodecahedron.png +0 -0
  107. benchmarks/sdf_showcase/primitives/3D/ellipsoid.png +0 -0
  108. benchmarks/sdf_showcase/primitives/3D/icosahedron.png +0 -0
  109. benchmarks/sdf_showcase/primitives/3D/octahedron.png +0 -0
  110. benchmarks/sdf_showcase/primitives/3D/pyramid.png +0 -0
  111. benchmarks/sdf_showcase/primitives/3D/rounded_box.png +0 -0
  112. benchmarks/sdf_showcase/primitives/3D/rounded_cone.png +0 -0
  113. benchmarks/sdf_showcase/primitives/3D/rounded_cylinder.png +0 -0
  114. benchmarks/sdf_showcase/primitives/3D/sphere.png +0 -0
  115. benchmarks/sdf_showcase/primitives/3D/tetrahedron.png +0 -0
  116. benchmarks/sdf_showcase/primitives/3D/torus.png +0 -0
  117. benchmarks/sdf_showcase/primitives/3D/wireframe_box.png +0 -0
  118. deepsdfstruct-1.7.2.dist-info/METADATA +44 -0
  119. deepsdfstruct-1.7.2.dist-info/RECORD +165 -0
  120. deepsdfstruct-1.7.2.dist-info/WHEEL +5 -0
  121. deepsdfstruct-1.7.2.dist-info/licenses/LICENSE +208 -0
  122. deepsdfstruct-1.7.2.dist-info/licenses/NOTICE +67 -0
  123. deepsdfstruct-1.7.2.dist-info/scm_file_list.json +178 -0
  124. deepsdfstruct-1.7.2.dist-info/scm_version.json +8 -0
  125. deepsdfstruct-1.7.2.dist-info/top_level.txt +4 -0
  126. docs/Makefile +20 -0
  127. docs/api_reference.rst +6 -0
  128. docs/conf.py +60 -0
  129. docs/index.rst +136 -0
  130. docs/make.bat +35 -0
  131. docs/qr_code_github.png +0 -0
  132. docs/qr_code_paper.png +0 -0
  133. docs/readme_images/example_output_01.png +0 -0
  134. docs/readme_images/example_output_02.png +0 -0
  135. docs/readme_images/example_output_03.png +0 -0
  136. docs/readme_images/example_output_04.png +0 -0
  137. tests/data/chairs/1005.obj +282 -0
  138. tests/data/chairs/1024.obj +222 -0
  139. tests/data/chairs/README.md +1 -0
  140. tests/data/circular_balls_test_case.stl +0 -0
  141. tests/data/cone.stl +1794 -0
  142. tests/data/example_disconnectd_mesh.inp +1784 -0
  143. tests/data/example_line_mesh.vtk +0 -0
  144. tests/data/stanford_bunny.stl +0 -0
  145. tests/data/sweep_test_case.stl +0 -0
  146. tests/test_DOE.py +49 -0
  147. tests/test_elongate_sdf.py +195 -0
  148. tests/test_flexisquares.py +187 -0
  149. tests/test_generate_dataset.py +76 -0
  150. tests/test_lattice_evaluation.py +137 -0
  151. tests/test_mesh_export.py +137 -0
  152. tests/test_mesh_functions.py +49 -0
  153. tests/test_networks.py +71 -0
  154. tests/test_pretrained_models.py +40 -0
  155. tests/test_reconstruction.py +101 -0
  156. tests/test_sdf_from_mesh.py +52 -0
  157. tests/test_sdf_functions.py +117 -0
  158. tests/test_sdf_primitives.py +668 -0
  159. tests/test_sdf_trimesh_comparison.py +482 -0
  160. tests/test_splinepy_unitcells.py +64 -0
  161. tests/test_structural_optimization.py +178 -0
  162. tests/test_torch_spline.py +216 -0
  163. tests/test_train_model.py +110 -0
  164. tests/test_training_data_ids.py +41 -0
  165. tests/tmp_outputs/temp_file.txt +0 -0
@@ -0,0 +1,44 @@
1
+ Metadata-Version: 2.4
2
+ Name: DeepSDFStruct
3
+ Version: 1.7.2
4
+ Summary: Deep Implicit Lattice Geometry
5
+ Author-email: Michael Kofler <michael.kofler@tuwien.ac.at>
6
+ Requires-Python: >=3.10
7
+ License-File: LICENSE
8
+ License-File: NOTICE
9
+ Requires-Dist: plyfile
10
+ Requires-Dist: scikit-image
11
+ Requires-Dist: trimesh
12
+ Requires-Dist: matplotlib
13
+ Requires-Dist: gustaf
14
+ Requires-Dist: splinepy
15
+ Requires-Dist: vedo
16
+ Requires-Dist: libigl
17
+ Requires-Dist: tetgenpy
18
+ Requires-Dist: meshio
19
+ Requires-Dist: numba
20
+ Requires-Dist: napf
21
+ Requires-Dist: mmapy
22
+ Requires-Dist: torch
23
+ Requires-Dist: torchvision
24
+ Requires-Dist: torchaudio
25
+ Requires-Dist: pytest>=8.3.5
26
+ Requires-Dist: huggingface-hub>=0.33.2
27
+ Requires-Dist: pytest-cov>=5.0.0
28
+ Requires-Dist: triangle>=20250106
29
+ Requires-Dist: vtk>=9.5.1
30
+ Requires-Dist: torch-fem<=0.5.0
31
+ Requires-Dist: numpy>=2.0.0
32
+ Requires-Dist: mlflow>=3.10.1
33
+ Requires-Dist: tqdm
34
+ Provides-Extra: docs
35
+ Requires-Dist: sphinx; extra == "docs"
36
+ Requires-Dist: pydata-sphinx-theme; extra == "docs"
37
+ Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
38
+ Provides-Extra: visualization
39
+ Requires-Dist: streamlit>=1.55.0; extra == "visualization"
40
+ Requires-Dist: streamlit-stl>=0.0.6; extra == "visualization"
41
+ Requires-Dist: scikit-learn; extra == "visualization"
42
+ Provides-Extra: computation
43
+ Requires-Dist: pypardiso>=0.4.6; extra == "computation"
44
+ Dynamic: license-file
@@ -0,0 +1,165 @@
1
+ DeepSDFStruct/SDF.py,sha256=_lvf-75fpUTgzZW_jMRQ6t6q0WIUwOvjIEfjF6PS9Wg,58574
2
+ DeepSDFStruct/__init__.py,sha256=muK-wVMiW_RcsLijF4Q1_nP3KzDODmaDSUh6tra6D1Q,2306
3
+ DeepSDFStruct/design_of_experiments.py,sha256=uxdSceDKtfjWFMY9vI17vR5rPh4jZruXr4AIFFkl7q4,7421
4
+ DeepSDFStruct/lattice_structure.py,sha256=AgFtor7tEhWNzjDk5bCAPk0j2Yy0tKqx7EmhVwSDOsw,9266
5
+ DeepSDFStruct/local_shapes.py,sha256=XMx6IewuTaKmY21wdht5BLb_n-h21nHXH9DgifNVJNI,7299
6
+ DeepSDFStruct/mesh.py,sha256=loUFs9ZOdL29lFuPtRMNKzrOZQvXjAc1kRcf5SUWEMg,41445
7
+ DeepSDFStruct/optimization.py,sha256=cZnMNDA0fHNTC7zK3ga6f03YJhybwiqeXokbChxa8J4,11899
8
+ DeepSDFStruct/parametrization.py,sha256=f5XrlynMwtJHi0h12o-o3QWxWXY_gEaYntMqgz5F4I4,6705
9
+ DeepSDFStruct/pretrained_models.py,sha256=mwW7hR7ZPPSIolu4wvukQeFA3YHwboIofZEn0TQCp80,3847
10
+ DeepSDFStruct/sampling.py,sha256=359VZwcgzyMMABgofgxuI41dTTI6b8FNgcbr6uJFz9E,22216
11
+ DeepSDFStruct/sdf_operations.py,sha256=Q2CjOM4JuTtuqnrENqeL5KojR5njnW9YM3j7zQC2g3I,36220
12
+ DeepSDFStruct/sdf_primitives.py,sha256=tI61KDFTu-Wufakq8jYVaBr-nbmKN-VmLaHrrzGHUbM,52297
13
+ DeepSDFStruct/torch_spline.py,sha256=YMOw40oeEhmteMXk1f2J3leY_HnGNnzjPyEOA7rELck,13797
14
+ DeepSDFStruct/utils.py,sha256=nc4vYmcWQi8MUf8GELsjSjRTgEALltnzmGYJKiBo-5U,2964
15
+ DeepSDFStruct/deep_sdf/__init__.py,sha256=ujR_H4X5db7Qo0GzFw8n5besYKEoztq0ma79oUBnKCE,2115
16
+ DeepSDFStruct/deep_sdf/create_screenshots_from_plyfiles.py,sha256=rALTrPdkqdf1GhCvCFB1Jo9WphsLHCEHfgI5jO14GME,1973
17
+ DeepSDFStruct/deep_sdf/data.py,sha256=yvw-y_HLHyx4fXudQX1vhz_gzPCTcHyOFrSALyDthH0,8052
18
+ DeepSDFStruct/deep_sdf/models.py,sha256=U-UQMpiGMbOqa0oJP0-BaCNkLzhIWB6RajL7bCiMs10,7170
19
+ DeepSDFStruct/deep_sdf/nn_utils.py,sha256=YObQfr-N3VSwS04CTFIqyZyASi2vbraIM5C4SgkCNeg,2293
20
+ DeepSDFStruct/deep_sdf/plotting.py,sha256=gj_j22FLETo8wuPB6ZuCgbAaUULZUQQto3fHO1v4Do0,3822
21
+ DeepSDFStruct/deep_sdf/reconstruction.py,sha256=galjMLssjkmujN1mgyHCFrvx385_umpSfCJbgJnmpkA,5326
22
+ DeepSDFStruct/deep_sdf/training.py,sha256=7RzSbZWjFPWop38I2Wk73SeU52uTDngtBjrC349fIZ8,26779
23
+ DeepSDFStruct/deep_sdf/workspace.py,sha256=1LXFi6fHogKiV5CXXGm0JdVI9Hr4BMyW2ptOohegb3k,10291
24
+ DeepSDFStruct/deep_sdf/metrics/__init__.py,sha256=9Z5uYp37vJe823kDZKagctKvPwrnjBs2vysmAQdsPuw,365
25
+ DeepSDFStruct/deep_sdf/metrics/mesh_to_analytical.py,sha256=ILpjJrCYd-G4BwCJJTv-4SAjoxPvlniP5mXlkggZm3Y,652
26
+ DeepSDFStruct/deep_sdf/networks/__init__.py,sha256=i7qwR9UNTn3KZPk8MMYapqTUP9n_iYSOhJdfEE2pF90,253
27
+ DeepSDFStruct/deep_sdf/networks/analytic_round_cross.py,sha256=4-59vOYkwihPaZXtYLARxh6KnzXDBrpTnsiHA6NyxmI,3327
28
+ DeepSDFStruct/deep_sdf/networks/deep_sdf_decoder.py,sha256=o479zVFbz_WKTyckJhDYSSJGzIHlqBHxXCoTx36oggs,5195
29
+ DeepSDFStruct/deep_sdf/networks/hierarchical_deep_sdf_decoder.py,sha256=3IEdaR6C--FaGGhW12CDEklYAcPCt5zmQ3KHvvctzBw,4842
30
+ DeepSDFStruct/deep_sdf/networks/hierarchical_positional_sdf_decoder.py,sha256=tSQXYWbV7_sUg_rsIkAGL_-PeA1pQU0JsyA1TFgllK8,6910
31
+ DeepSDFStruct/deep_sdf/networks/resnet_positional_sdf_decoder.py,sha256=8wAjfUT3JOJXd-TiX_tgkMYi2U5T5OGTHDIr9XQ5U78,3328
32
+ DeepSDFStruct/flexicubes/__init__.py,sha256=aikdSJXVYjof6Ky0Yj1ExWJWGs-1v66IyCzi5IsfTNk,635
33
+ DeepSDFStruct/flexicubes/flexicubes.py,sha256=nam_VJOJvuL-4KW3hqZan_OnzeFnZnjGF3ZmFZecfIQ,41514
34
+ DeepSDFStruct/flexicubes/tables.py,sha256=4MznVx7Q4LBPe9_QZfhXlwQkhf3SB5XoltzNB88Lh50,55424
35
+ DeepSDFStruct/flexisquares/__init__.py,sha256=sJ9Y-t-5yYzCy969ZDTrjlMBPiINgQIsWOBMCGtHVME,624
36
+ DeepSDFStruct/flexisquares/flexisquares.py,sha256=DGVwrQnybCPkiCN2YQpvqHEqktR6_enAVO7mF7bI3d0,37383
37
+ DeepSDFStruct/flexisquares/tables.py,sha256=0HN4KjCAmXBykOBmIV5oXIX-c9NiUSCZBGZwUneeZGs,2120
38
+ DeepSDFStruct/splinepy_unitcells/__init__.py,sha256=8mxTO8huXFZieHeGADceuNlDAS_07kKtKbdSJUBTzU4,1019
39
+ DeepSDFStruct/splinepy_unitcells/chi_3D.py,sha256=iuybIVvlhqsVqyZCvkQ32mv7PIyDTgfzpUqsVJrGs3I,70022
40
+ DeepSDFStruct/splinepy_unitcells/cross_lattice.py,sha256=mNeAu7Y2nS9ybIWhPcieO2XB8pPdjzaqAb0Lj-tNfLE,5500
41
+ DeepSDFStruct/splinepy_unitcells/double_lattice_extruded.py,sha256=ePtIow6SQxK0q1GswZ2Nvv-TfSJRFi6dNpY0R5szeyo,9712
42
+ DeepSDFStruct/splinepy_unitcells/snappy_3d.py,sha256=Y7l97hYcWJbHZWLTvp_21zs6PXbG6GP5_kfLJEnmTvs,20015
43
+ DeepSDFStruct/trained_models/analytic_round_cross/specs.json,sha256=jScncg2mHIdt30ak5m4MU9xZ4RCQhGlvgi9IFB8-8Wc,1181
44
+ DeepSDFStruct/trained_models/analytic_round_cross/LatentCodes/latest.pth,sha256=ur4ITSzD4m1dmx0-NI78GhNSF6_M5vK-Ek6wVFUQJI8,1367
45
+ DeepSDFStruct/trained_models/analytic_round_cross/ModelParameters/latest.pth,sha256=bh-bT6SUL0YHlp7XzfVDqq_fVs8aaCDGPmDCs7dxPVU,341630
46
+ DeepSDFStruct/trained_models/analytic_round_cross/OptimizerParameters/latest.pth,sha256=DylLvPxjSLWJAegYOQI51NQmTSCI4Dak5Xhv2AGaLgo,684938
47
+ DeepSDFStruct/trained_models/chi_and_cross/Logs.pth,sha256=uplg3QyOaYyDyHwpjY8F6cgF-EATv65l5v6z5XHddyw,593118
48
+ DeepSDFStruct/trained_models/chi_and_cross/specs.json,sha256=-68hfrYiDEBENMAntIK5mjmFlvrFt4CNjJagLW7gXK0,1520
49
+ DeepSDFStruct/trained_models/chi_and_cross/LatentCodes/latest.pth,sha256=IaqxWbkmrdwDQrmhydP7xz42owUHwogSXGVOqo1xmWY,2199
50
+ DeepSDFStruct/trained_models/chi_and_cross/ModelParameters/latest.pth,sha256=gNFF8C1vUTn8YrL0TalXioIeLv5RRwnv_UhTE5rsur8,341630
51
+ DeepSDFStruct/trained_models/chi_and_cross/OptimizerParameters/latest.pth,sha256=JSIWeA8OsoqdXfTHluQW7NEFxgkr1cgpBdWlnNDFnqI,686602
52
+ DeepSDFStruct/trained_models/primitives/specs.json,sha256=iESFoo_czkXUQcJkHC3E88289faa3BAkBNwrK_gYclc,1168
53
+ DeepSDFStruct/trained_models/primitives/LatentCodes/latest.pth,sha256=WCNjPZkQ_RjQlpGWqUHO8b_PHhk2dWZG5iau704kEpE,2516578
54
+ DeepSDFStruct/trained_models/primitives/ModelParameters/latest.pth,sha256=VhtUW_48wahRDW-UOlwqb6mkNOU88uYmRCvbVJgeL7o,241185
55
+ DeepSDFStruct/trained_models/primitives/OptimizerParameters/latest.pth,sha256=2tIuOfwCwq7CqapZ2AIdSL5C6LvRV2pskjHNehq8RX8,5513245
56
+ DeepSDFStruct/trained_models/primitives_2d/specs.json,sha256=YpSMg-IurtXAsSWcBmP9ZUJPUoim-NofO6Dz0rzjvmc,1178
57
+ DeepSDFStruct/trained_models/primitives_2d/LatentCodes/latest.pth,sha256=Ajogvc-esOIlw5-f7oCcvtfiRMZW4W_Dr-LEheHKk8I,1222690
58
+ DeepSDFStruct/trained_models/primitives_2d/ModelParameters/latest.pth,sha256=FqCDMQNBwB3d8hfvTuOEua43PzRCUhOEYSZo50Pe8SE,349077
59
+ DeepSDFStruct/trained_models/primitives_2d/OptimizerParameters/latest.pth,sha256=YueBr5fQzBpJ-ExDKqCjIigD5O8ckNGBfmppEGPlSjs,3142457
60
+ DeepSDFStruct/trained_models/round_cross/Logs.pth,sha256=HwQRgccH4QK1lbu6t0WGLVE7urV6FgcIr0EZKW1KHJY,503070
61
+ DeepSDFStruct/trained_models/round_cross/specs.json,sha256=lUIIM9qHbA7SW_lkq8bFVx23zNho79icap6CIpLIKrM,1290
62
+ DeepSDFStruct/trained_models/round_cross/LatentCodes/latest.pth,sha256=ur4ITSzD4m1dmx0-NI78GhNSF6_M5vK-Ek6wVFUQJI8,1367
63
+ DeepSDFStruct/trained_models/round_cross/ModelParameters/latest.pth,sha256=bh-bT6SUL0YHlp7XzfVDqq_fVs8aaCDGPmDCs7dxPVU,341630
64
+ DeepSDFStruct/trained_models/round_cross/OptimizerParameters/latest.pth,sha256=DylLvPxjSLWJAegYOQI51NQmTSCI4Dak5Xhv2AGaLgo,684938
65
+ DeepSDFStruct/trained_models/test_experiment/specs.json,sha256=CCanh-lyS9sQU4Rv2oxiQu1yRhjpxGEWrtgkP3Pz5Aw,1200
66
+ DeepSDFStruct/trained_models/test_experiment/training_summary.json,sha256=4MiQbOTICxAbhBN_WXLlXR74Nw3aDNgwCQb61BzUW90,387
67
+ DeepSDFStruct/trained_models/test_experiment/LatentCodes/latent_code_data_map.json,sha256=9ilQtU_M0OVAVDyTjAlFnN6SI_vwSveAel4_KBBVESw,7658
68
+ DeepSDFStruct/trained_models/test_experiment_hierarchical/specs.json,sha256=Z-lBFl1dY93wqgVkOdjvi0BUvsPI_r9pFhCblFYk_CM,1234
69
+ DeepSDFStruct/trained_models/test_experiment_hierarchical/training_summary.json,sha256=pp0u9WPssUUkgfyeZUbjApJLcpbHQ8DrxV2jl-yiUVo,387
70
+ DeepSDFStruct/trained_models/test_experiment_hierarchical/LatentCodes/latent_code_data_map.json,sha256=9ilQtU_M0OVAVDyTjAlFnN6SI_vwSveAel4_KBBVESw,7658
71
+ DeepSDFStruct/trained_models/test_experiment_homogenization/Logs.png,sha256=jN-YTRMYviC9Ul1w4CpzRRDTO_bZF88I6gzTjWPa8UU,51485
72
+ DeepSDFStruct/trained_models/test_experiment_homogenization/specs.json,sha256=SVTXnuWtd0OZ8DZMi2m4CRlq2nZuHnol2rqOKq0Gyc8,1393
73
+ DeepSDFStruct/trained_models/test_experiment_homogenization/training_summary.json,sha256=BITz0Mx1FCXCRjl-W1j-gXk6NlKPHO4b-o66K3gphH0,285
74
+ DeepSDFStruct/trained_models/test_experiment_homogenization/LatentCodes/latent_code_data_map.json,sha256=05C32Ki-mPVNGJc9plSgRhdwMIh_yZqlaxWYnBw4A-8,286018
75
+ DeepSDFStruct/trained_models/test_experiment_homogenization/LatentCodes/latest.pth,sha256=BuSUO8_QqLmWIsIPohzMiFEfhswi4Z28_mJGS70YKJ0,41634
76
+ DeepSDFStruct/trained_models/test_experiment_homogenization/ModelParameters/latest.pth,sha256=H5pgheEX2SSDjW2rxSISgyLIJrtoNltwprnQrrxnXm8,29193
77
+ DeepSDFStruct/trained_models/test_experiment_homogenization/OptimizerParameters/latest.pth,sha256=RNpRD-fnM2Tvkbk-sri3qwycC2fDNIVTUKlMCE9mQCE,140181
78
+ DeepSDFStruct/visualization/latent_viewer.py,sha256=J7lYJR3mZb9fgF9X7JG7-Dnq0g0e00ay9MGZrfE_nm8,6936
79
+ DeepSDFStruct/visualization/latent_viewer_cli.py,sha256=efjBUtAADAPxOoALThYCLeJaT7L8K23b8OM8tK1jHWI,210
80
+ benchmarks/generate_sdf_showcase.py,sha256=IyrN42LQMRq1yVrYzF-uSsU928kl8_ausR5L4LAk01M,17742
81
+ benchmarks/sdf_from_mesh_benchmark.py,sha256=nbq1gtdEWURuyzh2WUrV-DtG77sYOXXZ3AlUTyfXEps,1630
82
+ benchmarks/sdf_from_mesh_comparison.md,sha256=Rbk4-b3HeBolBNHCzZ5TcnsptU-eyy4ChZ_zDT4Dkw8,1649
83
+ benchmarks/sdf_showcase/operations/boolean/difference_sphere_box.png,sha256=4z8vLmGIFFcZwVg6NupTgqdZ6dhABynoP5u06SIFWw0,287164
84
+ benchmarks/sdf_showcase/operations/boolean/union_sphere_box.png,sha256=-BaWqYWFaZQWT2EOYOBpDKeqDc_OO7AsznawZPVn4lM,238995
85
+ benchmarks/sdf_showcase/operations/transformations/circular_array_sphere.png,sha256=vCjg8gDLlH486Hrjuvxdlr9DqhFolYSrxkaJq0jL6rA,495670
86
+ benchmarks/sdf_showcase/operations/transformations/dilate_sphere.png,sha256=uVp21koZxbw51g0thdQ6PMZzKKvatdyWqmHDkh2viHE,396393
87
+ benchmarks/sdf_showcase/operations/transformations/mirror_sphere.png,sha256=mCV9u2NTYmg3IkaEjFyR9OHNKFY9ydKIFC5-1sVFQ28,168367
88
+ benchmarks/sdf_showcase/operations/transformations/repeat_sphere.png,sha256=Tv-cy8xVbP_fqtxsh5QJ7l6M2mjBPaV3UJxZ8dArahY,1182837
89
+ benchmarks/sdf_showcase/operations/transformations/revolve_circle.png,sha256=N7_Ge_RTrkAQx56DoIL2QGp0F8A9gFbC_EZDM0HVNjU,420771
90
+ benchmarks/sdf_showcase/operations/transformations/shell_sphere.png,sha256=BnSepZNXUFUEQ8j3vR6gkLGMpBCwoG-3I94b1Ah6UYw,331332
91
+ benchmarks/sdf_showcase/operations/transformations/twist_torus.png,sha256=4FyeapdwX-wdbaau_8ybBGR6ft_YpuM0lpY-ZUOIrBk,538316
92
+ benchmarks/sdf_showcase/primitives/2D/circle.png,sha256=EYpJ43H3doMJ5sZJBNBUiLJpVaqoDmEqwXEy6GrcFb0,33181
93
+ benchmarks/sdf_showcase/primitives/2D/equilateral_triangle.png,sha256=q0ljljGwSGoQ5_5zZNmd_N1HQ2XC-OpZhHVZwcSL6Us,25551
94
+ benchmarks/sdf_showcase/primitives/2D/hexagon.png,sha256=--7tXLsn-HQC_rvTTZIOYE0YB-4zk7JNBb13-fbN7zE,25960
95
+ benchmarks/sdf_showcase/primitives/2D/polygon_pentagon.png,sha256=qsXtrdMd0j5-xUq6lEdXGz7DNNF3rqOXRXx1gr9teek,19163
96
+ benchmarks/sdf_showcase/primitives/2D/rectangle.png,sha256=ZCCEA8wctJVTclAz8-0qCRr4O9_9ougE4G3xBPQ-b0o,6810
97
+ benchmarks/sdf_showcase/primitives/2D/rounded_rectangle.png,sha256=DEDGh4wrthXNB-e0zZczu2OzpcjQGcrDJQSgCbfEn00,13126
98
+ benchmarks/sdf_showcase/primitives/3D/box.png,sha256=9diV1xJ847lCO_T_-wTVuREV9S9MqwoVErxLJdChV4A,68143
99
+ benchmarks/sdf_showcase/primitives/3D/capped_cone.png,sha256=h0yf8AqidIMZSdwzA3gVCF-WpZwKj_or3WAU4xYSXIM,110044
100
+ benchmarks/sdf_showcase/primitives/3D/capped_cylinder.png,sha256=h08U1SiQ-P3Trkj-XgIXBpHvgA4YJbQxkipXF5EMX0M,92398
101
+ benchmarks/sdf_showcase/primitives/3D/capsule.png,sha256=_XPab3_wxHGM3lM32OIAgXyLDOCw-2H5ewROwNbNGsc,139259
102
+ benchmarks/sdf_showcase/primitives/3D/cone.png,sha256=K7Att_u9I-9izREhKIwa2irNz32NP-1XJvSydwheVEA,119316
103
+ benchmarks/sdf_showcase/primitives/3D/corner_spheres.png,sha256=Re1B9SurBpqqKlt6h5aE99zuvOBfVeATP4EJ2V-Jmwk,53534
104
+ benchmarks/sdf_showcase/primitives/3D/cross_ms.png,sha256=yjCegKRZvsMXfsVzrTIif1Tjs4mwbOpu71Ew9olSK3c,174799
105
+ benchmarks/sdf_showcase/primitives/3D/cylinder.png,sha256=8H6MkG3qw34dX24Z5M-C8GChtQct0ZgwqJicNxNfVsM,72407
106
+ benchmarks/sdf_showcase/primitives/3D/dodecahedron.png,sha256=jfMuqwjSuJ-WmakdxERH1_W2ChociS-XCRA7CVxHEtw,153391
107
+ benchmarks/sdf_showcase/primitives/3D/ellipsoid.png,sha256=jkrMB0_fOzWLo8MRViMxzci9jDwd51nq3PUIClP40os,347269
108
+ benchmarks/sdf_showcase/primitives/3D/icosahedron.png,sha256=TQRnGoKx5GA0F44xsg4L519pkC_nLP6OrV4Pq2884bo,257662
109
+ benchmarks/sdf_showcase/primitives/3D/octahedron.png,sha256=KpGtpdHPZ307wRFzrp9eC2ZEC0zjv8h2MNPhaV3Z-44,98753
110
+ benchmarks/sdf_showcase/primitives/3D/pyramid.png,sha256=jKHXyTM8wvTACg_0_m257kwpqgpXjQo_QQ7bX8eDUig,258937
111
+ benchmarks/sdf_showcase/primitives/3D/rounded_box.png,sha256=l4nND0a_H-lObRBwvt92IbOaoNpMGENM4_zw1BQNVBk,147149
112
+ benchmarks/sdf_showcase/primitives/3D/rounded_cone.png,sha256=hGowb6pj40pvRODpO7pYayeDGkKk9A9-CLlUhfeNBck,201419
113
+ benchmarks/sdf_showcase/primitives/3D/rounded_cylinder.png,sha256=RMcNuTtKbyX_rcX2MBDanQelk8KGEsCO7v0Qm2MKwLU,119670
114
+ benchmarks/sdf_showcase/primitives/3D/sphere.png,sha256=yeMWhXr6Ax-gO9SynpfgaZSD7zGrVf5CRBXixwinMX4,664720
115
+ benchmarks/sdf_showcase/primitives/3D/tetrahedron.png,sha256=ikpteWzcUZMd-cL0EQicQJXe90C1gDnwjiYc9nwicMA,131763
116
+ benchmarks/sdf_showcase/primitives/3D/torus.png,sha256=32wcAOP_yxTbN_oRX1gGshXlCt0vXy5qRs3vD8RQF3E,326269
117
+ benchmarks/sdf_showcase/primitives/3D/wireframe_box.png,sha256=p1Ye3ia7b6r9-J0oxD80hjYWZzEn-p_EBsVPQS3X4Tw,155101
118
+ deepsdfstruct-1.7.2.dist-info/licenses/LICENSE,sha256=1SCwrjMLPawCnAh8yI7QSZElvB9HCUP_S5ru2oe_b3o,10604
119
+ deepsdfstruct-1.7.2.dist-info/licenses/NOTICE,sha256=JmOdYMycf-MD4nQnZ2Jxao30zzczEYOFHevMAfW3TvQ,3430
120
+ docs/Makefile,sha256=i2WHuFlgfyAPEW4ssEP8NY4cOibDJrVjvzSEU8_Ggwc,634
121
+ docs/api_reference.rst,sha256=N9PG6KoObBSBAypFMNfRq79HvxoiUrIJ7FJw5HY23DM,93
122
+ docs/conf.py,sha256=3FkhVkKoQQ6aD0CkMWmSbXX9nZDJ40-jGYNSMiGfGkQ,1858
123
+ docs/index.rst,sha256=gclURs9VnRQcufVnQ--yiMLN8ZAJxU0XMGhCk8mzb8c,5607
124
+ docs/make.bat,sha256=vKazJE8RW49Cy8K7hm8QYbletvAd8YkeKsaPA_dWnXs,800
125
+ docs/qr_code_github.png,sha256=vfi710yajzppuoCupWDEcDQmFOzkQvhBnMcQ4BEMi0E,671
126
+ docs/qr_code_paper.png,sha256=k6N-_vf8Qh6EHCycCwUxOQRBWrnC8WMNICQepRBKcAY,700
127
+ docs/readme_images/example_output_01.png,sha256=wklQ7n65TVLoyoaBqW9hqZEfn1KEP7EeUeiKTJv9bXg,2655
128
+ docs/readme_images/example_output_02.png,sha256=KvHOg57WC66ZspK2gGY3i2MpBbmfisehsr8a3pmJqrA,18945
129
+ docs/readme_images/example_output_03.png,sha256=uBw1AzmuzW6ayUYyEJX9c-0FDTpLcfK-Xnwq4NDEWZ4,22915
130
+ docs/readme_images/example_output_04.png,sha256=krgjef-l-ZLiYuA6mRm-M9riGHcFL-gQ_cYnjPcWK58,46576
131
+ tests/test_DOE.py,sha256=Z2xXVisKdZXdN4mKYEGe4M2Zv7LyDpNU9VPjjiPVuPg,1726
132
+ tests/test_elongate_sdf.py,sha256=V2w6uE0zvRiCBnOBXaXzxQgFb6f_HTLIIdYTqX8jfdQ,7209
133
+ tests/test_flexisquares.py,sha256=Y10Bw-Hdu5yyMqABCkEdvAZNa65BniCBa7sPp82hkP0,6864
134
+ tests/test_generate_dataset.py,sha256=K4VuTUUO5fQPdvCfgXm__caUnmzgbNiXe0fudPJN4yo,2445
135
+ tests/test_lattice_evaluation.py,sha256=ioow3m0nBlQ-y-jprvHtVqlGELmRPkxeQc-3gESoFqs,4111
136
+ tests/test_mesh_export.py,sha256=2nXbMxjs5DNGcsayJTTvRRern2oHukiK3jXvKhkGaao,4381
137
+ tests/test_mesh_functions.py,sha256=8Owp5a9502kYzdbPivBhwE3PEA6VC87J73OViaHTPBw,1852
138
+ tests/test_networks.py,sha256=a4WbwdyV5T7BsFERC6As7G5tcT82LPUvMmau86CB9oc,1829
139
+ tests/test_pretrained_models.py,sha256=mHE2p4KYNTwztIk1JzvAGgRzK1j8FkMdvg2togqhRRs,1230
140
+ tests/test_reconstruction.py,sha256=s-SiVWNHi7Gh4qGZwKbOGiRBwpdEBiZpdHiRFxc-cPk,3402
141
+ tests/test_sdf_from_mesh.py,sha256=I81B0RcISzERBRMomhgFTTR5gVm4WQEOiuUuVulnM4E,1494
142
+ tests/test_sdf_functions.py,sha256=0tNKiyau88j4NUVaiQ4yaslK-HQr3IQBepS3q8_aJoE,3935
143
+ tests/test_sdf_primitives.py,sha256=PrOVnC58v1vt-66NQjXSe8EvWm_g1Gso2qbniRn0a7g,21806
144
+ tests/test_sdf_trimesh_comparison.py,sha256=KbmIURmKaDj6rrtHYJ5BVfRKvksUim7_y8gSVmELTls,17188
145
+ tests/test_splinepy_unitcells.py,sha256=Akr3W6zh9n6rCCK-VfvAnBJnC4luH_S_Us8KWBYqlS0,2284
146
+ tests/test_structural_optimization.py,sha256=Rbzf30SojnPKDNuCGhiS5lvn7SUxcajvIgGQq7fCBks,6422
147
+ tests/test_torch_spline.py,sha256=li862D2Yc7N4LfpyJD3CIMaqFA0loIxVFdbKtGXTtQ4,6527
148
+ tests/test_train_model.py,sha256=eziovproT5qI9I4nxTr-YrIBsdYTIF7NHJ5Jvog6Tds,3356
149
+ tests/test_training_data_ids.py,sha256=g_wTSeNrONscnyaNcz-ryW7ZU4rQ_JpRP7w1gX2rqj8,1388
150
+ tests/data/circular_balls_test_case.stl,sha256=g71-hvJdflaU0VjRedfJ1ADKpqaoo7Cc7ogcQcq40Dk,1122284
151
+ tests/data/cone.stl,sha256=SB05h8SLTbKCazzgiJsDioJ5ySY2k42L_IfmhY0i2XY,70484
152
+ tests/data/example_disconnectd_mesh.inp,sha256=TXWFgM4AKI-ZCf-Iuhh8H-KIYFpaEIwc5TpiXDMSfUA,103468
153
+ tests/data/example_line_mesh.vtk,sha256=dxOsSFKCa-dNk3Yp0cUfstbZlkrxbF78-xyCuttSSqY,3835
154
+ tests/data/stanford_bunny.stl,sha256=SrkMqyTLOZjJP2sNhfTW2vJnqi1LN-ZdhHA5ISfujA8,4331684
155
+ tests/data/sweep_test_case.stl,sha256=YedYfBj1a9GKGS4qqZzK260Sg5vj3UStRl7mAAr5b-w,1209684
156
+ tests/data/chairs/1005.obj,sha256=zOlDUzNHXUGJQ_mqYb-w5EAbsWauUOlNSyqhZb5v2Z4,4564
157
+ tests/data/chairs/1024.obj,sha256=EzzRXziY2-5KcWA-2dfz5BTeQefDIfIlmfmCZj0cFwc,4202
158
+ tests/data/chairs/README.md,sha256=v88xEVB1pULg9__2waSRNyVTILncFm1RX67UC4gwA6A,83
159
+ tests/tmp_outputs/temp_file.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
160
+ deepsdfstruct-1.7.2.dist-info/METADATA,sha256=KA3s8fFtIRI5kCJCu9zhX0GdwxOQIxECFD-Kg2NwL8w,1344
161
+ deepsdfstruct-1.7.2.dist-info/WHEEL,sha256=K260EYznzXsJYBQGqmI8VTxEdiZYNvDZwW9cBh9-_MA,91
162
+ deepsdfstruct-1.7.2.dist-info/scm_file_list.json,sha256=iUbTg5Syt-DoI4gt28YshvMikGrby1JW5inxcbKQTKE,9073
163
+ deepsdfstruct-1.7.2.dist-info/scm_version.json,sha256=uIu00_NlXLhrX6k8kf3iTUGUmfHobdDqvbpWPSBiAk0,160
164
+ deepsdfstruct-1.7.2.dist-info/top_level.txt,sha256=8CnBttfVDDzi89FMxWdOq04eXZGtxTXapACqNhyyISg,36
165
+ deepsdfstruct-1.7.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (83.0.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,208 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License.
67
+
68
+ Subject to the terms and conditions of this License, each Contributor
69
+ hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
70
+ royalty-free, irrevocable copyright license to reproduce, prepare
71
+ Derivative Works of, publicly display, publicly perform, sublicense,
72
+ and distribute the Work and such Derivative Works in Source or Object
73
+ form.
74
+
75
+ 3. Grant of Patent License.
76
+
77
+ Subject to the terms and conditions of this License, each Contributor
78
+ hereby grants to You a perpetual, worldwide, non-exclusive, no-charge,
79
+ royalty-free, irrevocable (except as stated in this section) patent
80
+ license to make, have made, use, offer to sell, sell, import, and
81
+ otherwise transfer the Work, where such license applies only to those
82
+ patent claims licensable by such Contributor that are necessarily
83
+ infringed by their Contribution(s) alone or by combination of their
84
+ Contribution(s) with the Work to which such Contribution(s) was
85
+ submitted. If You institute patent litigation against any entity
86
+ (including a cross-claim or counterclaim in a lawsuit) alleging that
87
+ the Work or a Contribution incorporated within the Work constitutes
88
+ direct or contributory patent infringement, then any patent licenses
89
+ granted to You under this License for that Work shall terminate
90
+ as of the date such litigation is filed.
91
+
92
+ 4. Redistribution.
93
+
94
+ You may reproduce and distribute copies of the Work or Derivative
95
+ Works thereof in any medium, with or without modifications, and in
96
+ Source or Object form, provided that You meet the following conditions:
97
+
98
+ (a) You must give any other recipients of the Work or Derivative
99
+ Works a copy of this License; and
100
+
101
+ (b) You must cause any modified files to carry prominent notices
102
+ stating that You changed the files; and
103
+
104
+ (c) You must retain, in the Source form of any Derivative Works that
105
+ You distribute, all copyright, patent, trademark, and attribution
106
+ notices from the Source form of the Work, excluding those notices
107
+ that do not pertain to any part of the Derivative Works; and
108
+
109
+ (d) If the Work includes a "NOTICE" text file as part of its
110
+ distribution, then any Derivative Works that You distribute must
111
+ include a readable copy of the attribution notices contained
112
+ within such NOTICE file, excluding those notices that do not
113
+ pertain to any part of the Derivative Works, in at least one
114
+ of the following places: within a NOTICE text file distributed
115
+ as part of the Derivative Works; within the Source form or
116
+ documentation, if provided along with the Derivative Works; or,
117
+ within a display generated by the Derivative Works, if and
118
+ wherever such third-party notices normally appear. The contents
119
+ of the NOTICE file are for informational purposes only and
120
+ do not modify the License. You may add Your own attribution
121
+ notices within Derivative Works that You distribute, alongside
122
+ or as an addendum to the NOTICE text from the Work, provided
123
+ that such additional attribution notices cannot be construed
124
+ as modifying the License.
125
+
126
+ You may add Your own copyright statement to Your modifications and
127
+ may provide additional or different license terms and conditions
128
+ for use, reproduction, or distribution of Your modifications, or
129
+ for any such Derivative Works as a whole, provided Your use,
130
+ reproduction, and distribution of the Work otherwise complies with
131
+ the conditions stated in this License.
132
+
133
+ 5. Submission of Contributions.
134
+
135
+ Unless You explicitly state otherwise, any Contribution intentionally
136
+ submitted for inclusion in the Work by You to the Licensor shall be
137
+ under the terms and conditions of this License, without any
138
+ additional terms or conditions. Notwithstanding the above, nothing
139
+ herein shall supersede or modify the terms of any separate license
140
+ agreement you may have executed with Licensor regarding such
141
+ Contributions.
142
+
143
+ 6. Trademarks.
144
+
145
+ This License does not grant permission to use the trade names,
146
+ trademarks, service marks, or product names of the Licensor, except
147
+ as required for reasonable and customary use in describing the origin
148
+ of the Work and reproducing the content of the NOTICE file.
149
+
150
+ 7. Disclaimer of Warranty.
151
+
152
+ Unless required by applicable law or agreed to in writing, Licensor
153
+ provides the Work (and each Contributor provides its Contributions)
154
+ on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
155
+ KIND, either express or implied, including, without limitation,
156
+ any warranties or conditions of TITLE, NON-INFRINGEMENT,
157
+ MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are
158
+ solely responsible for determining the appropriateness of using or
159
+ distributing the Work and assume any risks associated with Your
160
+ exercise of permissions under this License.
161
+
162
+ 8. Limitation of Liability.
163
+
164
+ In no event and under no legal theory, whether in tort (including
165
+ negligence), contract, or otherwise, unless required by applicable
166
+ law (such as deliberate and grossly negligent acts) or agreed to in
167
+ writing, shall any Contributor be liable to You for damages,
168
+ including any direct, indirect, special, incidental, or consequential
169
+ damages of any character arising as a result of this License or out
170
+ of the use or inability to use the Work (including but not limited to
171
+ damages for loss of goodwill, work stoppage, computer failure or
172
+ malfunction, or any and all other commercial damages or losses),
173
+ even if such Contributor has been advised of the possibility of such
174
+ damages.
175
+
176
+ 9. Accepting Warranty or Additional Liability.
177
+
178
+ While redistributing the Work or Derivative Works thereof, You may
179
+ choose to offer, and charge a fee for, acceptance of support,
180
+ warranty, indemnity, or other liability obligations and/or rights
181
+ consistent with this License. However, in accepting such obligations,
182
+ You may act only on Your own behalf and on Your sole responsibility,
183
+ not on behalf of any other Contributor, and only if You agree to
184
+ indemnify, defend, and hold each Contributor harmless for any
185
+ liability incurred by, or claims asserted against, such Contributor
186
+ by reason of your accepting any such warranty or additional liability.
187
+
188
+ END OF TERMS AND CONDITIONS
189
+
190
+ APPENDIX: How to apply the Apache License to your work.
191
+
192
+ To apply the Apache License to your work, attach the following
193
+ boilerplate notice, with the fields enclosed by brackets "[]"
194
+ replaced with your own identifying information. (Don't include
195
+ the brackets!)
196
+
197
+ Licensed under the Apache License, Version 2.0 (the "License");
198
+ you may not use this file except in compliance with the License.
199
+ You may obtain a copy of the License at
200
+
201
+ http://www.apache.org/licenses/LICENSE-2.0
202
+
203
+ Unless required by applicable law or agreed to in writing,
204
+ software distributed under the License is distributed on an
205
+ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
206
+ KIND, either express or implied. See the License for the
207
+ specific language governing permissions and limitations
208
+ under the License.
@@ -0,0 +1,67 @@
1
+ NOTICE
2
+
3
+ This product includes software developed by NVIDIA and contributors, specifically the FlexiCubes project (https://github.com/nv-tlabs/FlexiCubes), licensed under the Apache License, Version 2.0.
4
+
5
+ Modifications have been made to the original code, including renaming elements of the API to match conventions used in the Kaolin library (https://github.com/NVIDIAGameWorks/kaolin). These changes are not part of the original FlexiCubes codebase.
6
+
7
+ Portions of this software are also based on work by:
8
+ - The Apache Software Foundation (http://www.apache.org/)
9
+
10
+ Licensed under the Apache License, Version 2.0 (the "License");
11
+ you may not use this file except in compliance with the License.
12
+ You may obtain a copy of the License at:
13
+
14
+ http://www.apache.org/licenses/LICENSE-2.0
15
+
16
+ Unless required by applicable law or agreed to in writing, software
17
+ distributed under the License is distributed on an "AS IS" BASIS,
18
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19
+ See the License for the specific language governing permissions and
20
+ limitations under the License.
21
+
22
+
23
+ This product includes software developed by TU Wien and contributors, specifically the splinepy project.
24
+ MIT License
25
+
26
+ Copyright (c) 2021 Jaewook Lee
27
+
28
+ Permission is hereby granted, free of charge, to any person obtaining a copy
29
+ of this software and associated documentation files (the "Software"), to deal
30
+ in the Software without restriction, including without limitation the rights
31
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
32
+ copies of the Software, and to permit persons to whom the Software is
33
+ furnished to do so, subject to the following conditions:
34
+
35
+ The above copyright notice and this permission notice shall be included in all
36
+ copies or substantial portions of the Software.
37
+
38
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
39
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
40
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
41
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
42
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
43
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
44
+ SOFTWARE.
45
+
46
+ This product includes software developed by Facebook and contributors, specifically the DeepSDF code.
47
+ MIT License
48
+
49
+ Copyright (c) 2019 Facebook
50
+
51
+ Permission is hereby granted, free of charge, to any person obtaining a copy
52
+ of this software and associated documentation files (the "Software"), to deal
53
+ in the Software without restriction, including without limitation the rights
54
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
55
+ copies of the Software, and to permit persons to whom the Software is
56
+ furnished to do so, subject to the following conditions:
57
+
58
+ The above copyright notice and this permission notice shall be included in all
59
+ copies or substantial portions of the Software.
60
+
61
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
62
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
63
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
64
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
65
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
66
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
67
+ SOFTWARE.