RS2Scripting 11.23.0.dev2__py3-none-any.whl → 11.23.0.dev3__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.
- {RS2Scripting-11.23.0.dev2.dist-info → RS2Scripting-11.23.0.dev3.dist-info}/METADATA +1 -1
- {RS2Scripting-11.23.0.dev2.dist-info → RS2Scripting-11.23.0.dev3.dist-info}/RECORD +6 -6
- rs2/interpreter/InterpreterModel.py +4 -3
- {RS2Scripting-11.23.0.dev2.dist-info → RS2Scripting-11.23.0.dev3.dist-info}/License.txt +0 -0
- {RS2Scripting-11.23.0.dev2.dist-info → RS2Scripting-11.23.0.dev3.dist-info}/WHEEL +0 -0
- {RS2Scripting-11.23.0.dev2.dist-info → RS2Scripting-11.23.0.dev3.dist-info}/top_level.txt +0 -0
|
@@ -9,7 +9,7 @@ rs2/interpreter/CompositeResult.py,sha256=IvCxvSJvBwe1fn_ZQhN3823RUIWDTyWbjxyACs
|
|
|
9
9
|
rs2/interpreter/HistoryQueryResults.py,sha256=7HjZL8mLqNW-apVOhY42Jxo-uMFWzTH_meAwjuEXBMg,956
|
|
10
10
|
rs2/interpreter/InterpreterEnums.py,sha256=LLf6L3t4EdlqTAvV6yEpwGyZTd3Ph-perIKyfLfRbC4,5468
|
|
11
11
|
rs2/interpreter/InterpreterGraphEnums.py,sha256=EzhwBih2TC7Us5NY2GTL6W0_7wsIWi1NDv16Jjl6AC8,1757
|
|
12
|
-
rs2/interpreter/InterpreterModel.py,sha256=
|
|
12
|
+
rs2/interpreter/InterpreterModel.py,sha256=7hqSRzTQxQp0awQJ9Y3k_ZF-5fcZy1gPMhROkmTcQN8,12964
|
|
13
13
|
rs2/interpreter/JointResult.py,sha256=vW04g5hdvkbWaAew6tNmCSeNp-1ecRyIjs_DhbGiJP4,937
|
|
14
14
|
rs2/interpreter/LinerResult.py,sha256=yZpw6ceJNYGDeu8a4iAHJPYFtKeN0xDRDwgmMT2TKE8,1457
|
|
15
15
|
rs2/interpreter/MaterialQueryResults.py,sha256=xlHpPQ0VvysyPkJekP6OU0HPJlSUBo0HEHIvFgZHvUI,2099
|
|
@@ -178,8 +178,8 @@ rs2/modeler/properties/pile/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMp
|
|
|
178
178
|
rs2/utilities/ApplicationManager.py,sha256=u2GS_nW6uJcBcOc_CN5yy1DaBU5CF3yOtFGpJC7tdE4,2586
|
|
179
179
|
rs2/utilities/ColorPicker.py,sha256=nOHwCHtn8p3KkVC-GSpa38AOhRh2urQVE3brViH3vzE,2534
|
|
180
180
|
rs2/utilities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
181
|
-
RS2Scripting-11.23.0.
|
|
182
|
-
RS2Scripting-11.23.0.
|
|
183
|
-
RS2Scripting-11.23.0.
|
|
184
|
-
RS2Scripting-11.23.0.
|
|
185
|
-
RS2Scripting-11.23.0.
|
|
181
|
+
RS2Scripting-11.23.0.dev3.dist-info/License.txt,sha256=_OkJXIBSGMEg07z5G3WiNn3yWOvhXK___X7MHTWR17E,1077
|
|
182
|
+
RS2Scripting-11.23.0.dev3.dist-info/METADATA,sha256=qzkV_SmY2RbGWORwoktiZnXhaGCAw02QYjSujsBGejM,9688
|
|
183
|
+
RS2Scripting-11.23.0.dev3.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
184
|
+
RS2Scripting-11.23.0.dev3.dist-info/top_level.txt,sha256=9QT-lM7XOqDZtjDEtW-lpH9z4TZPnuq4_4rYcR1W8jM,4
|
|
185
|
+
RS2Scripting-11.23.0.dev3.dist-info/RECORD,,
|
|
@@ -231,7 +231,8 @@ class Model(ProxyObject):
|
|
|
231
231
|
# displacement force
|
|
232
232
|
if len(entity_data) < 3 or len(entity_data[0]) <1 or len(entity_data[0][0]) < 4:
|
|
233
233
|
continue
|
|
234
|
-
|
|
234
|
+
if len(entity_data[1]) < 1 or len(entity_data[2]) < 1:
|
|
235
|
+
continue
|
|
235
236
|
for yeilding_vector in entity_data[1]:
|
|
236
237
|
yielding = BoltYieldingResult(*yeilding_vector)
|
|
237
238
|
yielding_results.append(yielding)
|
|
@@ -336,8 +337,8 @@ class Model(ProxyObject):
|
|
|
336
337
|
for stage_idx, stage_data in map_data.items():
|
|
337
338
|
structured_data[stage_idx] = []
|
|
338
339
|
for entity_name, entity_data in stage_data.items():
|
|
339
|
-
liner_result = self.
|
|
340
|
-
joint_result = self.
|
|
340
|
+
liner_result = self._process_liner_data(entity_data, entity_name)
|
|
341
|
+
joint_result = self._process_joint_data(entity_data, entity_name)
|
|
341
342
|
composition_result = ResultType(entity_name,joint_result,liner_result)
|
|
342
343
|
structured_data[stage_idx].append(composition_result)
|
|
343
344
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|