RS2Scripting 11.23.0.dev3__py3-none-any.whl → 11.23.0.dev4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: RS2Scripting
3
- Version: 11.23.0.dev3
3
+ Version: 11.23.0.dev4
4
4
  Summary: Client library for interacting with RS2 through python
5
5
  Author: Rocscience
6
6
  License: MIT License
@@ -4,7 +4,7 @@ rs2/_common/ProxyObject.py,sha256=6c6AJPTTAR7dSBowNhw2OzizAFNHixkRy8sQRv8gqlU,47
4
4
  rs2/_common/Units.py,sha256=T0JYsYuxtc2b59_I83GztMETmssqOXI-oQ-KREfgMm8,202
5
5
  rs2/_common/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  rs2/_common/documentProxy.py,sha256=W1a2uezHNIG0VXjF1IODN680j0q-hzAH2WEwe0xCKW8,182
7
- rs2/interpreter/BoltResult.py,sha256=hspIW08yEqH7nXwyvagPsX8SKU_A--wCeLotapvSePw,1994
7
+ rs2/interpreter/BoltResult.py,sha256=HDNqEXMJYcKdu2fUddZHyTMQZhzpjkryYd_C1kKRedU,2050
8
8
  rs2/interpreter/CompositeResult.py,sha256=IvCxvSJvBwe1fn_ZQhN3823RUIWDTyWbjxyACszPijc,896
9
9
  rs2/interpreter/HistoryQueryResults.py,sha256=7HjZL8mLqNW-apVOhY42Jxo-uMFWzTH_meAwjuEXBMg,956
10
10
  rs2/interpreter/InterpreterEnums.py,sha256=LLf6L3t4EdlqTAvV6yEpwGyZTd3Ph-perIKyfLfRbC4,5468
@@ -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.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,,
181
+ RS2Scripting-11.23.0.dev4.dist-info/License.txt,sha256=_OkJXIBSGMEg07z5G3WiNn3yWOvhXK___X7MHTWR17E,1077
182
+ RS2Scripting-11.23.0.dev4.dist-info/METADATA,sha256=GoUuJpCm81o1k8Rj2d_AjRyWZ9LN3WNOa-bH6TJ0gXw,9688
183
+ RS2Scripting-11.23.0.dev4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
184
+ RS2Scripting-11.23.0.dev4.dist-info/top_level.txt,sha256=9QT-lM7XOqDZtjDEtW-lpH9z4TZPnuq4_4rYcR1W8jM,4
185
+ RS2Scripting-11.23.0.dev4.dist-info/RECORD,,
@@ -5,8 +5,8 @@ class BoltElementYieldStatus(Enum):
5
5
  BOLT_ELEMENT_NOT_YIELDED = 0
6
6
  BOLT_ELEMENT_TYPE_UNKNOWN_YIELDED = 1
7
7
  BOLT_ELEMENT_TENSION_YIELDED = 2
8
- BOLT_ELEMENT_SHEAR_YIELDED = 3
9
- BOLT_ELEMENT_TENSIONANDSHEAR_YIELDED = 4
8
+ BOLT_ELEMENT_SHEAR_YIELDED = 4
9
+ BOLT_ELEMENT_TENSIONANDSHEAR_YIELDED = BOLT_ELEMENT_TENSION_YIELDED + BOLT_ELEMENT_SHEAR_YIELDED
10
10
  BOLT_ELEMENT_UNDEFINED_YIELDED = -1
11
11
 
12
12
  class BoltYieldingResult: