Cadquery object filtering framework
Project description
CadQuery object filtering framework
cq-filter adds a few new workplane methods that take a function argument
of type f: Callable[[CQObject], bool]
:
filter(f)
: filters Workplane objectssort(f)
: orders Workplane objectsgroup(f)
: groups Workplane objectslast
: selects newly created faces
Additionally, it adds subscription support to the Workplane, allowing selection of objects quickly.
Rationale
Manipulating object selections in cadquery isn't currently possible without breaking out of the fluent API.
Using filter
Following example filters all faces with an Area of more than 100
wp = (
wp
.faces(">Z")
.filter(lambda face: face.Area() > 100)
)
⚠️ values in cq/occt are often not as exact as you'd expect. For example you might expect a certain
face to have an area of exactly 100 and be included when you filter the area against >= 100
, but upon
closer inspection it turns out the area is actually just slightly below 100 (99.999999997). Consider rounding to some
sane precision, like round(face.Area(), 4)
Using sort and subscription
Following example sorts all faces by area and selects the three biggest ones
wp = (
wp
.faces(">Z")
.sort(lambda face: face.Area())[-3:]
)
Using group and clustering
Select the smallest faces that are within 10 units of each other
wp = (
wp
.faces(">Z")
.group(Cluster(lambda face: face.Area(), tol=10)[0])
)
-
⚠️
group()
call will not yet select new objects, but it will create a new workplane object. Selection should be done immediatelly after the grouping. Grouping data will be erased by next manipulation of workplane. -
selecting a range of groups (
[0:2]
) works as expected -
Cluster() defaults to a tolerance of
1e-4
Using last
to select newly created faces
A call to .last(everything=False)
attempts to select newly created faces. When everything = False
it will only
select faces that have a normal parallel to the current workplane. Presumably this default behaviour is what you'd
want to use to select the face(s) created by a call to extrude
or cutBlind
. Supplying everything = True
will
select all faces that are new.
from cq_filter import Workplane
wp = (
Workplane()
.rect(5, 5)
.extrude(2)
.last()
.workplane()
)
- ⚠️
last
will not select faces that were modified - ⚠️
last
is probably not very handy for selecting the end face of something likerevolve
Usage
You may want to create your own workplane class if you have multiple mixins
from cq_filter import CQFilterMixin
class Workplane(CQFilterMixin, cq.Workplane):
pass
If you don't have multiple mixins, then the above class can also be directly imported
from cq_filter import Workplane
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for cq_filter-0.0.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8a5275ace5cf06658daf16c5c39dc408a5a501d5848ff0daa99035c5623e30ec |
|
MD5 | 868a2b4439745c5acae6db9f612c9c89 |
|
BLAKE2b-256 | 9aaa0d50ab049d6999100cd20d1e3f60f81d04e8356c3a2fbc42622d30a99da0 |