Skip to content

Commit 5839609

Browse files
committed
docuemnt face selection #15
1 parent 81b5e07 commit 5839609

File tree

2 files changed

+72
-11
lines changed

2 files changed

+72
-11
lines changed

cadscript/body.py

+12-9
Original file line numberDiff line numberDiff line change
@@ -155,19 +155,20 @@ def intersect(self, tool_body: 'Body') -> 'Body':
155155
self.__wp = wp
156156
return self
157157

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':
159159
"""
160160
Adds an extrusion to the specified face of the body using a sketch.
161161
162162
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`.
164165
sketch (Sketch): The sketch to extrude. If None is given, the face itself is extruded.
165166
amount (float): The amount of extrusion.
166167
167168
Returns:
168169
Body: The modified body object.
169170
"""
170-
face = self.__wp.faces(faceStr)
171+
face = self.__wp.faces(faceQuery)
171172
plane = face.workplane(origin=(0, 0, 0))
172173
if sketch:
173174
plane = plane.placeSketch(sketch.cq())
@@ -176,19 +177,20 @@ def add_extrude(self, faceStr: str, sketch: Optional['Sketch'], amount: float) -
176177
self.__wp = plane.extrude(amount, "a")
177178
return self
178179

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':
180181
"""
181182
Adds a cut extrusion to the specified face of the body using a sketch.
182183
183184
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`.
185187
sketch (Sketch): The sketch to extrude. If None is given, the face itself is extruded.
186188
amount (float): The amount of extrusion. For cutting you usually want to use a negative value to cut into the body.
187189
188190
Returns:
189191
Body: The modified body object.
190192
"""
191-
face = self.__wp.faces(faceStr)
193+
face = self.__wp.faces(faceQuery)
192194
plane = face.workplane(origin=(0, 0, 0))
193195
if sketch:
194196
plane = plane.placeSketch(sketch.cq())
@@ -197,12 +199,13 @@ def cut_extrude(self, faceStr: str, sketch: Optional['Sketch'], amount: float) -
197199
self.__wp = plane.extrude(amount, "s")
198200
return self
199201

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':
201203
"""
202204
Creates a new body by extruding the specified face of the body using a sketch.
203205
204206
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`.
206209
sketch (Sketch): The sketch to extrude. If None is given, the face itself is extruded.
207210
amount (float): The amount of extrusion. Can also be a tuple of two floats to extrude between two planes with the given offsets.
208211
@@ -215,7 +218,7 @@ def make_extrude(self, faceStr: str, sketch: Optional['Sketch'], amount: Dimensi
215218
dim = get_dimension(amount, False)
216219
offset = dim.min if abs(dim.min) > 1e-6 else 0.0
217220

218-
face = self.__wp.faces(faceStr)
221+
face = self.__wp.faces(faceQuery)
219222
plane = face.workplane(origin=(0, 0, 0)) # offset param does not work for some reason, move result instead
220223
if sketch:
221224
plane = plane.placeSketch(sketch.cq())

docs/source/ref_query_string.rst

+60-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Selecting Edges
6666
---------------
6767

6868

69-
The following methods allow you to select points (aka vertices) in a sketch based on a query string.
69+
The following methods allow you to edges of a body based on a query string.
7070

7171
.. hlist::
7272

@@ -91,7 +91,7 @@ The following query bits are supported:
9191
- Selects all edges
9292
* - \+
9393
- \+Z
94-
- Edges aligned in the Z direction
94+
- Edges aligned in the z direction
9595
* - \|
9696
- \|Z
9797
- Edges parallel to z direction
@@ -130,3 +130,61 @@ The following query bits are supported:
130130
- not >Y
131131
- All edges but the farthest in the positive y dir
132132

133+
134+
135+
.. _query_faces:
136+
137+
Selecting Faces
138+
---------------
139+
140+
141+
The following methods allow you to select faces of a body based on a query string.
142+
143+
.. hlist::
144+
145+
* :py:meth:`Body.make_extrude`
146+
* :py:meth:`Body.add_extrude`
147+
* :py:meth:`Body.cut_extrude`
148+
149+
The following query bits are supported:
150+
151+
152+
153+
.. list-table::
154+
:header-rows: 1
155+
156+
* - Query
157+
- Example
158+
- Selects
159+
* - \+
160+
- \+Z
161+
- Faces with normal in positive z direction
162+
* - \|
163+
- \|Z
164+
- Faces with normal in positive or negative z direction
165+
* - #
166+
- #Z
167+
- Faces with normal perpendicular to z direction
168+
* - >
169+
- >Y
170+
- Face farthest in positive y direction
171+
* - <
172+
- <Y
173+
- Face closest in positive y direction
174+
* - >>[]
175+
- >>Y[1]
176+
- The search string ">>Y" sorts all faces in positive Y direction.\
177+
The "[1]" selects the second face in that list (first in the list has index 0).
178+
* - <<[]
179+
- <<Y[0]
180+
- The search string "<<Y" sorts all faces in negative Y direction.\
181+
The "[0]" selects the first face in that list.
182+
* - or
183+
- >Y or <Y
184+
- Faces farthest in the positive or negative y dir
185+
* - and
186+
- >Y and +Y
187+
- Faces farthest in the positive y dir and normal in positive y dir
188+
* - not
189+
- not >Y
190+
- All faces but the farthest in the positive y dir

0 commit comments

Comments
 (0)