mastapy 13.0.3__py3-none-any.whl → 13.0.4b1__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.
- mastapy/_internal/version.py +2 -2
- mastapy/gears/manufacturing/cylindrical/cutters/_722.py +59 -0
- mastapy/gears/manufacturing/cylindrical/cutters/_723.py +14 -0
- mastapy/gears/manufacturing/cylindrical/cutters/_724.py +28 -0
- {mastapy-13.0.3.dist-info → mastapy-13.0.4b1.dist-info}/METADATA +5 -5
- {mastapy-13.0.3.dist-info → mastapy-13.0.4b1.dist-info}/RECORD +7 -7
- {mastapy-13.0.3.dist-info → mastapy-13.0.4b1.dist-info}/WHEEL +0 -0
mastapy/_internal/version.py
CHANGED
@@ -85,6 +85,65 @@ class MutableCommon(_706.CurveInLinkedList):
|
|
85
85
|
super().__init__(instance_to_wrap)
|
86
86
|
self._freeze()
|
87
87
|
|
88
|
+
@property
|
89
|
+
def height(self: Self) -> "float":
|
90
|
+
"""float"""
|
91
|
+
temp = self.wrapped.Height
|
92
|
+
|
93
|
+
if temp is None:
|
94
|
+
return 0.0
|
95
|
+
|
96
|
+
return temp
|
97
|
+
|
98
|
+
@height.setter
|
99
|
+
@enforce_parameter_types
|
100
|
+
def height(self: Self, value: "float"):
|
101
|
+
self.wrapped.Height = float(value) if value is not None else 0.0
|
102
|
+
|
103
|
+
@property
|
104
|
+
def height_for_tabulation(self: Self) -> "str":
|
105
|
+
"""str"""
|
106
|
+
temp = self.wrapped.HeightForTabulation
|
107
|
+
|
108
|
+
if temp is None:
|
109
|
+
return ""
|
110
|
+
|
111
|
+
return temp
|
112
|
+
|
113
|
+
@height_for_tabulation.setter
|
114
|
+
@enforce_parameter_types
|
115
|
+
def height_for_tabulation(self: Self, value: "str"):
|
116
|
+
self.wrapped.HeightForTabulation = str(value) if value is not None else ""
|
117
|
+
|
118
|
+
@property
|
119
|
+
def offset(self: Self) -> "float":
|
120
|
+
"""float"""
|
121
|
+
temp = self.wrapped.Offset
|
122
|
+
|
123
|
+
if temp is None:
|
124
|
+
return 0.0
|
125
|
+
|
126
|
+
return temp
|
127
|
+
|
128
|
+
@offset.setter
|
129
|
+
@enforce_parameter_types
|
130
|
+
def offset(self: Self, value: "float"):
|
131
|
+
self.wrapped.Offset = float(value) if value is not None else 0.0
|
132
|
+
|
133
|
+
@property
|
134
|
+
def offset_for_tabulation(self: Self) -> "str":
|
135
|
+
"""str
|
136
|
+
|
137
|
+
Note:
|
138
|
+
This property is readonly.
|
139
|
+
"""
|
140
|
+
temp = self.wrapped.OffsetForTabulation
|
141
|
+
|
142
|
+
if temp is None:
|
143
|
+
return ""
|
144
|
+
|
145
|
+
return temp
|
146
|
+
|
88
147
|
@property
|
89
148
|
def protuberance(self: Self) -> "float":
|
90
149
|
"""float"""
|
@@ -190,6 +190,20 @@ class MutableCurve(_722.MutableCommon):
|
|
190
190
|
float(value) if value is not None else 0.0
|
191
191
|
)
|
192
192
|
|
193
|
+
@property
|
194
|
+
def offset(self: Self) -> "float":
|
195
|
+
"""float
|
196
|
+
|
197
|
+
Note:
|
198
|
+
This property is readonly.
|
199
|
+
"""
|
200
|
+
temp = self.wrapped.Offset
|
201
|
+
|
202
|
+
if temp is None:
|
203
|
+
return 0.0
|
204
|
+
|
205
|
+
return temp
|
206
|
+
|
193
207
|
@property
|
194
208
|
def pressure_angle_modification(self: Self) -> "float":
|
195
209
|
"""float"""
|
@@ -74,6 +74,34 @@ class MutableFillet(_722.MutableCommon):
|
|
74
74
|
super().__init__(instance_to_wrap)
|
75
75
|
self._freeze()
|
76
76
|
|
77
|
+
@property
|
78
|
+
def height(self: Self) -> "float":
|
79
|
+
"""float
|
80
|
+
|
81
|
+
Note:
|
82
|
+
This property is readonly.
|
83
|
+
"""
|
84
|
+
temp = self.wrapped.Height
|
85
|
+
|
86
|
+
if temp is None:
|
87
|
+
return 0.0
|
88
|
+
|
89
|
+
return temp
|
90
|
+
|
91
|
+
@property
|
92
|
+
def offset(self: Self) -> "float":
|
93
|
+
"""float
|
94
|
+
|
95
|
+
Note:
|
96
|
+
This property is readonly.
|
97
|
+
"""
|
98
|
+
temp = self.wrapped.Offset
|
99
|
+
|
100
|
+
if temp is None:
|
101
|
+
return 0.0
|
102
|
+
|
103
|
+
return temp
|
104
|
+
|
77
105
|
@property
|
78
106
|
def radius(self: Self) -> "float":
|
79
107
|
"""float"""
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: mastapy
|
3
|
-
Version: 13.0.
|
3
|
+
Version: 13.0.4b1
|
4
4
|
Summary: Python scripting API for MASTA.
|
5
5
|
Home-page: https://www.smartmt.com/
|
6
6
|
License: MIT
|
@@ -32,12 +32,12 @@ Requires-Dist: ptvsd (>=4.2)
|
|
32
32
|
Requires-Dist: pythonnet (<3.0.0) ; python_version < "3.9"
|
33
33
|
Requires-Dist: pythonnet (>=3.0.0,<4.0.0) ; python_version >= "3.9"
|
34
34
|
Requires-Dist: typeguard (>=4.1.2) ; python_full_version >= "3.7.4"
|
35
|
-
Project-URL: Documentation, https://documentation.smartmt.com/MastaAPI/13.0.
|
35
|
+
Project-URL: Documentation, https://documentation.smartmt.com/MastaAPI/13.0.4/
|
36
36
|
Description-Content-Type: text/markdown
|
37
37
|
|
38
38
|
<h1 align="center">
|
39
|
-
<img src="https://documentation.smartmt.com/MastaAPI/13.0.
|
40
|
-
<img src="https://documentation.smartmt.com/MastaAPI/13.0.
|
39
|
+
<img src="https://documentation.smartmt.com/MastaAPI/13.0.4/images/smt_logo.png" width="150" alt="SMT"><br>
|
40
|
+
<img src="https://documentation.smartmt.com/MastaAPI/13.0.4/images/MASTA_13_logo.png" width="400" alt="Mastapy" style="padding-top: 15px">
|
41
41
|
</h1><br>
|
42
42
|
|
43
43
|
[](https://python-poetry.org/) [](https://github.com/psf/black) [](https://opensource.org/licenses/MIT)
|
@@ -46,7 +46,7 @@ Mastapy is the Python scripting API for MASTA.
|
|
46
46
|
|
47
47
|
- **Website**: https://www.smartmt.com/
|
48
48
|
- **Support**: https://support.smartmt.com/
|
49
|
-
- **Documentation**: https://documentation.smartmt.com/MastaAPI/13.0.
|
49
|
+
- **Documentation**: https://documentation.smartmt.com/MastaAPI/13.0.4/
|
50
50
|
|
51
51
|
|
52
52
|
### Features
|
@@ -242,7 +242,7 @@ mastapy/_internal/sentinels.py,sha256=kubt3th7cw3Iur45H356GWLH7Q4M9WisXdHn1QsZbJ
|
|
242
242
|
mastapy/_internal/tuple_with_name.py,sha256=4FuD9bRay3-2fYn2uW93oFh2c6SF_gsCSfXktInASFg,1360
|
243
243
|
mastapy/_internal/type_enforcement.py,sha256=kSzqm6zLUKzLQYkIG9yhsUYqM-T5Q9ewCZyc4q9SfYs,9125
|
244
244
|
mastapy/_internal/utility.py,sha256=fX8rmHYUiDv20HQPO0uMyZ7ELzdifXI-bPw6DHse6JA,2529
|
245
|
-
mastapy/_internal/version.py,sha256=
|
245
|
+
mastapy/_internal/version.py,sha256=pqojXyh4Q1WVSDQvsTzCt1QUZ1dejGkG1wS6qj8cx_g,138
|
246
246
|
mastapy/_math/__init__.py,sha256=82b7h91IZzg0FK-DFYrzssdOrJZNa62T2Ts8dGRbiQg,796
|
247
247
|
mastapy/_math/color.py,sha256=eO4Iyz5WWfLZaNZYoTVUn7yevT_k1MAk9JzoZUU8hrM,3538
|
248
248
|
mastapy/_math/matrix_2x2.py,sha256=3zxr-WNO0jferdbkYyOGvWlaEVp_Ufs3mLaGo6Ddyks,19212
|
@@ -1532,9 +1532,9 @@ mastapy/gears/manufacturing/cylindrical/cutters/_718.py,sha256=e2z5lfND0NrRpKD8o
|
|
1532
1532
|
mastapy/gears/manufacturing/cylindrical/cutters/_719.py,sha256=7loktDK_dXr_SJDYyaB2MCg8pRhfZdzT4sECY44BH08,3615
|
1533
1533
|
mastapy/gears/manufacturing/cylindrical/cutters/_720.py,sha256=nxFKnlvzdM8WYFArkLPkH02oPyOPFqALZR3v_7Zq11o,3653
|
1534
1534
|
mastapy/gears/manufacturing/cylindrical/cutters/_721.py,sha256=sqtDlzyCpw6Rfb7lmkKLBnXvZ63_cu-mfw3X9gcckTA,6204
|
1535
|
-
mastapy/gears/manufacturing/cylindrical/cutters/_722.py,sha256=
|
1536
|
-
mastapy/gears/manufacturing/cylindrical/cutters/_723.py,sha256=
|
1537
|
-
mastapy/gears/manufacturing/cylindrical/cutters/_724.py,sha256=
|
1535
|
+
mastapy/gears/manufacturing/cylindrical/cutters/_722.py,sha256=0j8tqxNTlvE4yWeXG4piOTbwl1g9TZ8-NqxtKw1-XGM,6378
|
1536
|
+
mastapy/gears/manufacturing/cylindrical/cutters/_723.py,sha256=I_sfZYh820DljpTg3zR9JCtytRoAjuanIsLpvtRLJVc,6995
|
1537
|
+
mastapy/gears/manufacturing/cylindrical/cutters/_724.py,sha256=Ju8pY3YgL8ELRAcbmhyWV9I4saciEVHg1DsGt1y5i8w,3385
|
1538
1538
|
mastapy/gears/manufacturing/cylindrical/cutters/_725.py,sha256=ni86leL0TVlYGxzQGCgEiZuiFt01xpg_HmlWNugqcVU,5790
|
1539
1539
|
mastapy/gears/manufacturing/cylindrical/cutters/__init__.py,sha256=-FQuhQOCEyQXw00ELRsZLmqD-VwGYlx0vm5_qFoYEHs,2936
|
1540
1540
|
mastapy/gears/manufacturing/cylindrical/cutters/tangibles/_726.py,sha256=AAqvq8ap_HDj2pkfXPwvagKeXp42rOZClcoLKARG3QE,6710
|
@@ -8093,6 +8093,6 @@ mastapy/utility_gui/charts/_1887.py,sha256=_-FFOyfT1KZXZ4dG1lfLdwoTp_Cwx6h8ZXCFM
|
|
8093
8093
|
mastapy/utility_gui/charts/__init__.py,sha256=GOVr5uMGPDpFXDK-IYuV3rqhQJ6dbL7uFjduCr9shQk,2186
|
8094
8094
|
mastapy/utility_gui/databases/_1888.py,sha256=f5gHn2QFyNP09d-UCAHhD0mEJkLDoSAqwnT4zzfJ2vg,3163
|
8095
8095
|
mastapy/utility_gui/databases/__init__.py,sha256=eEBJb5iL38nFywUhUEmNQ6YQ_OLmDHgBmZpaKmnVYDM,441
|
8096
|
-
mastapy-13.0.
|
8097
|
-
mastapy-13.0.
|
8098
|
-
mastapy-13.0.
|
8096
|
+
mastapy-13.0.4b1.dist-info/METADATA,sha256=jW5xnbR0hoyLpxdjBDLvLtgFp38sYT4ipZmh07eW8EY,3097
|
8097
|
+
mastapy-13.0.4b1.dist-info/WHEEL,sha256=d2fvjOD7sXsVzChCqf0Ty0JbHKBaLYwDbGQDwQTnJ50,88
|
8098
|
+
mastapy-13.0.4b1.dist-info/RECORD,,
|
File without changes
|