@@ -191,14 +191,14 @@ def filter(self, objectList: Sequence[Shape]) -> List[Shape]:
191
191
192
192
193
193
class ParallelDirSelector (BaseDirSelector ):
194
- """
194
+ r """
195
195
Selects objects parallel with the provided direction.
196
196
197
197
Applicability:
198
198
Linear Edges
199
199
Planar Faces
200
200
201
- Use the string syntax shortcut \ |(X|Y|Z) if you want to select based on a cardinal direction.
201
+ Use the string syntax shortcut |(X|Y|Z) if you want to select based on a cardinal direction.
202
202
203
203
Example::
204
204
@@ -677,9 +677,9 @@ def _getVector(self, pr):
677
677
return self .axes [pr .simple_dir ]
678
678
679
679
def filter (self , objectList ):
680
- """
680
+ r """
681
681
selects minimum, maximum, positive or negative values relative to a direction
682
- [+\|-\|<\|>\ |] \<X\|Y\ |Z>
682
+ [+|-|<|> |] <X|Y |Z>
683
683
"""
684
684
return self .mySelector .filter (objectList )
685
685
@@ -740,7 +740,7 @@ def not_callback(res):
740
740
741
741
742
742
class StringSyntaxSelector (Selector ):
743
- """
743
+ r """
744
744
Filter lists objects using a simple string syntax. All of the filters available in the string syntax
745
745
are also available ( usually with more functionality ) through the creation of full-fledged
746
746
selector objects. see :py:class:`Selector` and its subclasses
@@ -753,7 +753,7 @@ class StringSyntaxSelector(Selector):
753
753
754
754
***Modfiers*** are ``('|','+','-','<','>','%')``
755
755
756
- :\ |:
756
+ :|:
757
757
parallel to ( same as :py:class:`ParallelDirSelector` ). Can return multiple objects.
758
758
:#:
759
759
perpendicular to (same as :py:class:`PerpendicularDirSelector` )
0 commit comments