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,282 @@
1
+ v 0 0 0.227708622813225
2
+ v 0.126488029956818 0 0
3
+ v 0.126488029956818 0 0.227708622813225
4
+ v 0 0 0
5
+ v 0 0.51197612285614 0
6
+ v 0.126488029956818 0.391982585191727 0
7
+ v 0.863382697105408 0.391982585191727 0
8
+ v 1 0 0
9
+ v 0.863382697105408 0 0
10
+ v 1 0.51197612285614 0
11
+ v 0.126488029956818 0.391982585191727 0.227708622813225
12
+ v 0 0.391982585191727 0.227708622813225
13
+ v 0 0 1
14
+ v 0 0.391982585191727 0.776318728923798
15
+ v 0 0 0.776318728923798
16
+ v 0 0.509309947490692 0.776318728923798
17
+ v 0 0.936002790927887 0.776318728923798
18
+ v 0 0.936002790927887 1
19
+ v 1 0.509309947490692 0.776318728923798
20
+ v 1 0.936002790927887 1
21
+ v 1 0.936002790927887 0.776318728923798
22
+ v 1 0.391982585191727 0.776318728923798
23
+ v 1 0 0.776318728923798
24
+ v 1 0 1
25
+ v 1 0.391982585191727 0.227708622813225
26
+ v 1 0 0.227708622813225
27
+ v 0.863382697105408 0 0.227708622813225
28
+ v 0.863382697105408 0.391982585191727 0.227708622813225
29
+ v 0.126488029956818 0.391982585191727 0.776318728923798
30
+ v 0.126488029956818 0.391982585191727 1
31
+ v 0.863382697105408 0.391982585191727 0.776318728923798
32
+ v 0.863382697105408 0.391982585191727 1
33
+ v 0.863382697105408 0 1
34
+ v 0.126488029956818 0 1
35
+ v 0.925764381885529 0.955084800720215 1
36
+ v 0.0742356404662132 0.955084800720215 1
37
+ v 0.84663599729538 0.971007823944092 1
38
+ v 0.15336400270462 0.971007823944092 1
39
+ v 0.763524651527405 0.983580827713013 1
40
+ v 0.236475333571434 0.983580827713013 1
41
+ v 0.677381694316864 0.992668330669403 1
42
+ v 0.322618305683136 0.992668330669403 1
43
+ v 0.589202761650085 0.99816107749939 1
44
+ v 0.410797208547592 0.99816107749939 1
45
+ v 0.499998509883881 1 1
46
+ v 0.0742356404662132 0.955084800720215 0.776318728923798
47
+ v 0.925764381885529 0.955084800720215 0.776318728923798
48
+ v 0.15336400270462 0.971007823944092 0.776318728923798
49
+ v 0.84663599729538 0.971007823944092 0.776318728923798
50
+ v 0.236475333571434 0.983580827713013 0.776318728923798
51
+ v 0.763524651527405 0.983580827713013 0.776318728923798
52
+ v 0.677381694316864 0.992668330669403 0.776318728923798
53
+ v 0.322618305683136 0.992668330669403 0.776318728923798
54
+ v 0.410797208547592 0.99816107749939 0.776318728923798
55
+ v 0.589202761650085 0.99816107749939 0.776318728923798
56
+ v 0.499998509883881 1 0.776318728923798
57
+ v 0.126488029956818 0 0.776318728923798
58
+ v 0.863382697105408 0 0.776318728923798
59
+ f 1 2 3
60
+ f 2 1 4
61
+ f 5 2 4
62
+ f 2 5 6
63
+ f 6 5 7
64
+ f 7 8 9
65
+ f 8 7 10
66
+ f 10 7 5
67
+ f 11 2 6
68
+ f 2 11 3
69
+ f 11 1 3
70
+ f 1 11 12
71
+ f 13 14 15
72
+ f 14 13 16
73
+ f 16 13 17
74
+ f 17 13 18
75
+ f 1 5 4
76
+ f 5 1 12
77
+ f 5 12 16
78
+ f 16 12 14
79
+ f 5 19 10
80
+ f 19 5 16
81
+ f 20 19 21
82
+ f 19 20 22
83
+ f 22 20 23
84
+ f 23 20 24
85
+ f 10 25 8
86
+ f 25 10 19
87
+ f 25 19 22
88
+ f 26 8 25
89
+ f 27 8 26
90
+ f 8 27 9
91
+ f 27 7 9
92
+ f 7 27 28
93
+ f 14 11 29
94
+ f 11 14 12
95
+ f 30 31 32
96
+ f 31 30 28
97
+ f 28 30 7
98
+ f 7 30 6
99
+ f 6 30 29
100
+ f 6 29 11
101
+ f 31 25 22
102
+ f 25 31 28
103
+ f 20 33 24
104
+ f 33 20 32
105
+ f 32 20 30
106
+ f 30 13 34
107
+ f 13 30 18
108
+ f 18 30 20
109
+ f 18 20 35
110
+ f 18 35 36
111
+ f 36 35 37
112
+ f 36 37 38
113
+ f 38 37 39
114
+ f 38 39 40
115
+ f 40 39 41
116
+ f 40 41 42
117
+ f 42 41 43
118
+ f 42 43 44
119
+ f 44 43 45
120
+ f 17 36 46
121
+ f 36 17 18
122
+ f 17 19 16
123
+ f 19 17 21
124
+ f 21 17 46
125
+ f 21 46 47
126
+ f 47 46 48
127
+ f 47 48 49
128
+ f 49 48 50
129
+ f 49 50 51
130
+ f 51 50 52
131
+ f 52 50 53
132
+ f 52 53 54
133
+ f 52 54 55
134
+ f 55 54 56
135
+ f 14 57 15
136
+ f 57 14 29
137
+ f 13 57 34
138
+ f 57 13 15
139
+ f 47 20 21
140
+ f 20 47 35
141
+ f 33 23 24
142
+ f 23 33 58
143
+ f 31 23 58
144
+ f 23 31 22
145
+ f 25 27 26
146
+ f 27 25 28
147
+ f 33 31 58
148
+ f 31 33 32
149
+ f 30 57 29
150
+ f 57 30 34
151
+ f 49 35 47
152
+ f 35 49 37
153
+ f 51 37 49
154
+ f 37 51 39
155
+ f 52 39 51
156
+ f 39 52 41
157
+ f 55 41 52
158
+ f 41 55 43
159
+ f 56 43 55
160
+ f 43 56 45
161
+ f 54 45 56
162
+ f 45 54 44
163
+ f 53 44 54
164
+ f 44 53 42
165
+ f 50 42 53
166
+ f 42 50 40
167
+ f 48 40 50
168
+ f 40 48 38
169
+ f 46 38 48
170
+ f 38 46 36
171
+ f 4 1 2
172
+ f 3 2 1
173
+ f 5 7 10
174
+ f 10 7 8
175
+ f 9 8 7
176
+ f 7 5 6
177
+ f 6 5 2
178
+ f 4 2 5
179
+ f 3 11 2
180
+ f 6 2 11
181
+ f 12 11 1
182
+ f 3 1 11
183
+ f 14 12 16
184
+ f 16 12 5
185
+ f 12 1 5
186
+ f 4 5 1
187
+ f 18 13 17
188
+ f 17 13 16
189
+ f 16 13 14
190
+ f 15 14 13
191
+ f 16 5 19
192
+ f 10 19 5
193
+ f 25 8 26
194
+ f 22 19 25
195
+ f 19 10 25
196
+ f 8 25 10
197
+ f 24 20 23
198
+ f 23 20 22
199
+ f 22 20 19
200
+ f 21 19 20
201
+ f 9 27 8
202
+ f 26 8 27
203
+ f 28 27 7
204
+ f 9 7 27
205
+ f 28 31 25
206
+ f 22 25 31
207
+ f 11 29 6
208
+ f 29 30 6
209
+ f 6 30 7
210
+ f 7 30 28
211
+ f 28 30 31
212
+ f 32 31 30
213
+ f 12 14 11
214
+ f 29 11 14
215
+ f 45 43 44
216
+ f 44 43 42
217
+ f 43 41 42
218
+ f 42 41 40
219
+ f 41 39 40
220
+ f 40 39 38
221
+ f 39 37 38
222
+ f 38 37 36
223
+ f 37 35 36
224
+ f 36 35 18
225
+ f 35 20 18
226
+ f 20 30 18
227
+ f 18 30 13
228
+ f 34 13 30
229
+ f 30 20 32
230
+ f 32 20 33
231
+ f 24 33 20
232
+ f 18 17 36
233
+ f 46 36 17
234
+ f 56 54 55
235
+ f 55 54 52
236
+ f 54 53 52
237
+ f 53 50 52
238
+ f 52 50 51
239
+ f 51 50 49
240
+ f 50 48 49
241
+ f 49 48 47
242
+ f 48 46 47
243
+ f 47 46 21
244
+ f 46 17 21
245
+ f 21 17 19
246
+ f 16 19 17
247
+ f 29 14 57
248
+ f 15 57 14
249
+ f 15 13 57
250
+ f 34 57 13
251
+ f 35 47 20
252
+ f 21 20 47
253
+ f 58 33 23
254
+ f 24 23 33
255
+ f 22 31 23
256
+ f 58 23 31
257
+ f 28 25 27
258
+ f 26 27 25
259
+ f 32 33 31
260
+ f 58 31 33
261
+ f 34 30 57
262
+ f 29 57 30
263
+ f 37 49 35
264
+ f 47 35 49
265
+ f 39 51 37
266
+ f 49 37 51
267
+ f 41 52 39
268
+ f 51 39 52
269
+ f 43 55 41
270
+ f 52 41 55
271
+ f 45 56 43
272
+ f 55 43 56
273
+ f 44 54 45
274
+ f 56 45 54
275
+ f 42 53 44
276
+ f 54 44 53
277
+ f 40 50 42
278
+ f 53 42 50
279
+ f 38 48 40
280
+ f 50 40 48
281
+ f 36 46 38
282
+ f 48 38 46
@@ -0,0 +1,222 @@
1
+ v 0.765303075313568 0.0194533504545689 0.842429220676422
2
+ v 0.96514892578125 0.0194533504545689 0.985818684101105
3
+ v 0.765303075313568 0.0194533504545689 0.985818684101105
4
+ v 0.96514892578125 0.0194533504545689 0.842429220676422
5
+ v 0.765303075313568 0.402208000421524 0.985818684101105
6
+ v 0.96514892578125 0.402208000421524 0.842429220676422
7
+ v 0.96514892578125 0.402208000421524 0.985818684101105
8
+ v 0.765303075313568 0.402208000421524 0.842429220676422
9
+ v 0.323142826557159 0.402208000421524 0.842429220676422
10
+ v 0.123297013342381 0.402208000421524 1
11
+ v 0.323142826557159 0.402208000421524 1
12
+ v 0.123297013342381 0.402208000421524 0.842429220676422
13
+ v 0.323142826557159 0 1
14
+ v 0.322420746088028 0.402208000421524 0.842429220676422
15
+ v 0.123297013342381 0 0.842429220676422
16
+ v 0.123297013342381 0 1
17
+ v 0.323142826557159 0 0.842429220676422
18
+ v 0.322420746088028 0.0194533504545689 0.842429220676422
19
+ v 0.122574917972088 0.0194533504545689 0.842429220676422
20
+ v 0.122574917972088 0.402208000421524 0.842429220676422
21
+ v 0.759975969791412 0.0194533504545689 0.282391548156738
22
+ v 0.959819734096527 0.0194533504545689 0.498800933361053
23
+ v 0.759975969791412 0.0194533504545689 0.498800933361053
24
+ v 0.959819734096527 0.0194533504545689 0.282391548156738
25
+ v 0.759975969791412 0.402208000421524 0.498800933361053
26
+ v 0.959819734096527 0.402208000421524 0.282391548156738
27
+ v 0.959819734096527 0.402208000421524 0.498800933361053
28
+ v 0.759975969791412 0.402208000421524 0.282391548156738
29
+ v 1 1 0.901452898979187
30
+ v 0 1 1
31
+ v 1 1 1
32
+ v 0 1 0.892997443675995
33
+ v 1 0.421661376953125 1
34
+ v 1 0.463722169399261 0.901452898979187
35
+ v 0 0.463722169399261 0.892997443675995
36
+ v 0 0.421661376953125 1
37
+ v 1 0.463722169399261 0
38
+ v 0 0.421661376953125 0
39
+ v 1 0.421661376953125 0
40
+ v 0 0.463722169399261 0
41
+ v 0.0563488341867924 0.421661376953125 0.360891133546829
42
+ v 0.0570627748966217 0.421661376953125 0.360891133546829
43
+ v 0.0563488341867924 0.421661376953125 0.160585209727287
44
+ v 0.0563488341867924 0.0389067009091377 0.360891133546829
45
+ v 0.256194651126862 0.421661376953125 0.360891133546829
46
+ v 0.256194651126862 0.421661376953125 0.160585209727287
47
+ v 0.0563488341867924 0.0389067009091377 0.160585209727287
48
+ v 0.256194651126862 0.0389067009091377 0.360891133546829
49
+ v 0.0570627748966217 0.0194533504545689 0.360891133546829
50
+ v 0.256908595561981 0.421661376953125 0.360891133546829
51
+ v 0.256194651126862 0.0389067009091377 0.160585209727287
52
+ v 0.256908595561981 0.0194533504545689 0.360891133546829
53
+ f 1 2 3
54
+ f 2 1 4
55
+ f 2 5 3
56
+ f 5 1 3
57
+ f 1 6 4
58
+ f 6 2 4
59
+ f 5 2 7
60
+ f 1 5 8
61
+ f 6 1 8
62
+ f 2 6 7
63
+ f 6 5 7
64
+ f 5 6 8
65
+ f 3 2 1
66
+ f 4 1 2
67
+ f 3 5 2
68
+ f 3 1 5
69
+ f 4 6 1
70
+ f 4 2 6
71
+ f 7 2 5
72
+ f 8 5 1
73
+ f 8 1 6
74
+ f 7 6 2
75
+ f 7 5 6
76
+ f 8 6 5
77
+ f 9 10 11
78
+ f 10 9 12
79
+ f 10 13 11
80
+ f 13 9 11
81
+ f 12 9 14
82
+ f 15 10 12
83
+ f 13 10 16
84
+ f 9 13 17
85
+ f 9 15 14
86
+ f 14 15 12
87
+ f 10 15 16
88
+ f 15 13 16
89
+ f 13 15 17
90
+ f 15 9 17
91
+ f 11 10 9
92
+ f 12 9 10
93
+ f 11 13 10
94
+ f 11 9 13
95
+ f 14 9 12
96
+ f 12 10 15
97
+ f 16 10 13
98
+ f 17 13 9
99
+ f 14 15 9
100
+ f 12 18 14
101
+ f 14 18 12
102
+ f 12 15 14
103
+ f 16 15 10
104
+ f 16 13 15
105
+ f 17 15 13
106
+ f 17 9 15
107
+ f 18 12 19
108
+ f 19 12 18
109
+ f 19 12 20
110
+ f 20 12 19
111
+ f 21 22 23
112
+ f 22 21 24
113
+ f 22 25 23
114
+ f 25 21 23
115
+ f 21 26 24
116
+ f 26 22 24
117
+ f 25 22 27
118
+ f 21 25 28
119
+ f 26 21 28
120
+ f 22 26 27
121
+ f 23 22 21
122
+ f 24 21 22
123
+ f 23 25 22
124
+ f 23 21 25
125
+ f 24 26 21
126
+ f 24 22 26
127
+ f 27 22 25
128
+ f 28 25 21
129
+ f 28 21 26
130
+ f 27 26 22
131
+ f 26 25 27
132
+ f 27 25 26
133
+ f 25 26 28
134
+ f 28 26 25
135
+ f 29 30 31
136
+ f 30 29 32
137
+ f 30 33 31
138
+ f 31 34 29
139
+ f 29 35 32
140
+ f 35 30 32
141
+ f 33 30 36
142
+ f 33 34 31
143
+ f 35 29 34
144
+ f 35 36 30
145
+ f 33 37 34
146
+ f 37 35 34
147
+ f 36 35 38
148
+ f 37 33 39
149
+ f 35 37 40
150
+ f 40 38 35
151
+ f 38 37 39
152
+ f 37 38 40
153
+ f 31 30 29
154
+ f 32 29 30
155
+ f 31 33 30
156
+ f 29 34 31
157
+ f 32 35 29
158
+ f 32 30 35
159
+ f 36 30 33
160
+ f 31 34 33
161
+ f 34 29 35
162
+ f 30 36 35
163
+ f 33 41 36
164
+ f 34 37 33
165
+ f 34 35 37
166
+ f 38 35 36
167
+ f 38 36 41
168
+ f 42 41 33
169
+ f 39 33 37
170
+ f 40 37 35
171
+ f 35 38 40
172
+ f 43 38 41
173
+ f 41 42 44
174
+ f 42 45 41
175
+ f 42 33 45
176
+ f 39 45 33
177
+ f 39 37 38
178
+ f 40 38 37
179
+ f 46 38 43
180
+ f 43 41 47
181
+ f 43 41 45
182
+ f 44 42 48
183
+ f 44 47 41
184
+ f 42 49 45
185
+ f 45 48 42
186
+ f 46 45 39
187
+ f 38 46 39
188
+ f 43 47 46
189
+ f 46 43 45
190
+ f 44 48 47
191
+ f 45 49 50
192
+ f 45 46 48
193
+ f 51 46 47
194
+ f 51 47 48
195
+ f 52 50 49
196
+ f 51 48 46
197
+ f 36 41 33
198
+ f 41 36 38
199
+ f 33 41 42
200
+ f 41 38 43
201
+ f 44 42 41
202
+ f 41 45 42
203
+ f 45 33 42
204
+ f 33 45 39
205
+ f 43 38 46
206
+ f 47 41 43
207
+ f 45 41 43
208
+ f 48 42 44
209
+ f 41 47 44
210
+ f 45 49 42
211
+ f 42 48 45
212
+ f 39 45 46
213
+ f 39 46 38
214
+ f 46 47 43
215
+ f 45 43 46
216
+ f 47 48 44
217
+ f 50 49 45
218
+ f 48 46 45
219
+ f 47 46 51
220
+ f 48 47 51
221
+ f 49 50 52
222
+ f 46 48 51
@@ -0,0 +1 @@
1
+ Chairs obtained from https://huggingface.co/datasets/andyye/simple-chairs/tree/main
Binary file