@@ -155,19 +155,20 @@ def intersect(self, tool_body: 'Body') -> 'Body':
155
155
self .__wp = wp
156
156
return self
157
157
158
- def add_extrude (self , faceStr : str , sketch : Optional ['Sketch' ], amount : float ) -> 'Body' :
158
+ def add_extrude (self , faceQuery : str , sketch : Optional ['Sketch' ], amount : float ) -> 'Body' :
159
159
"""
160
160
Adds an extrusion to the specified face of the body using a sketch.
161
161
162
162
Args:
163
- faceStr (str): The face to extrude.
163
+ faceQuery (str): Query string that selects the face to extrude. Must evaluate to exactly one face.
164
+ The query syntax is documented at :ref:`query_faces`.
164
165
sketch (Sketch): The sketch to extrude. If None is given, the face itself is extruded.
165
166
amount (float): The amount of extrusion.
166
167
167
168
Returns:
168
169
Body: The modified body object.
169
170
"""
170
- face = self .__wp .faces (faceStr )
171
+ face = self .__wp .faces (faceQuery )
171
172
plane = face .workplane (origin = (0 , 0 , 0 ))
172
173
if sketch :
173
174
plane = plane .placeSketch (sketch .cq ())
@@ -176,19 +177,20 @@ def add_extrude(self, faceStr: str, sketch: Optional['Sketch'], amount: float) -
176
177
self .__wp = plane .extrude (amount , "a" )
177
178
return self
178
179
179
- def cut_extrude (self , faceStr : str , sketch : Optional ['Sketch' ], amount : float ) -> 'Body' :
180
+ def cut_extrude (self , faceQuery : str , sketch : Optional ['Sketch' ], amount : float ) -> 'Body' :
180
181
"""
181
182
Adds a cut extrusion to the specified face of the body using a sketch.
182
183
183
184
Args:
184
- faceStr (str): The face to extrude.
185
+ faceQuery (str): Query string that selects the face to extrude. Must evaluate to exactly one face.
186
+ The query syntax is documented at :ref:`query_faces`.
185
187
sketch (Sketch): The sketch to extrude. If None is given, the face itself is extruded.
186
188
amount (float): The amount of extrusion. For cutting you usually want to use a negative value to cut into the body.
187
189
188
190
Returns:
189
191
Body: The modified body object.
190
192
"""
191
- face = self .__wp .faces (faceStr )
193
+ face = self .__wp .faces (faceQuery )
192
194
plane = face .workplane (origin = (0 , 0 , 0 ))
193
195
if sketch :
194
196
plane = plane .placeSketch (sketch .cq ())
@@ -197,12 +199,13 @@ def cut_extrude(self, faceStr: str, sketch: Optional['Sketch'], amount: float) -
197
199
self .__wp = plane .extrude (amount , "s" )
198
200
return self
199
201
200
- def make_extrude (self , faceStr : str , sketch : Optional ['Sketch' ], amount : DimensionDefinitionType ) -> 'Body' :
202
+ def make_extrude (self , faceQuery : str , sketch : Optional ['Sketch' ], amount : DimensionDefinitionType ) -> 'Body' :
201
203
"""
202
204
Creates a new body by extruding the specified face of the body using a sketch.
203
205
204
206
Args:
205
- faceStr (str): The face to extrude.
207
+ faceQuery (str): Query string that selects the face to extrude. Must evaluate to exactly one face.
208
+ The query syntax is documented at :ref:`query_faces`.
206
209
sketch (Sketch): The sketch to extrude. If None is given, the face itself is extruded.
207
210
amount (float): The amount of extrusion. Can also be a tuple of two floats to extrude between two planes with the given offsets.
208
211
@@ -215,7 +218,7 @@ def make_extrude(self, faceStr: str, sketch: Optional['Sketch'], amount: Dimensi
215
218
dim = get_dimension (amount , False )
216
219
offset = dim .min if abs (dim .min ) > 1e-6 else 0.0
217
220
218
- face = self .__wp .faces (faceStr )
221
+ face = self .__wp .faces (faceQuery )
219
222
plane = face .workplane (origin = (0 , 0 , 0 )) # offset param does not work for some reason, move result instead
220
223
if sketch :
221
224
plane = plane .placeSketch (sketch .cq ())
0 commit comments