-
Notifications
You must be signed in to change notification settings - Fork 300
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Final shape / free func tweaks (#1731)
* Add sample * Mypy fix * Isoline constructon * Add isolines and return params when sampling * Extend check * Test extended check output * Mypy fix * Func API * Use the official import in the docs * Add face * Handle trimming and all possible geometries * Initial tests * test _adaptor_curve_to_edge * Fix test * Be consistent with Sketch * Punctuation * Update cadquery/occ_impl/shapes.py Co-authored-by: Jeremy Wright <[email protected]> --------- Co-authored-by: Jeremy Wright <[email protected]>
- Loading branch information
1 parent
f1bf901
commit 1c0e747
Showing
6 changed files
with
250 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
from .occ_impl.geom import Vector, Plane, Location | ||
from .occ_impl.shapes import ( | ||
Shape, | ||
Vertex, | ||
Edge, | ||
Wire, | ||
Face, | ||
Shell, | ||
Solid, | ||
CompSolid, | ||
Compound, | ||
wire, | ||
face, | ||
shell, | ||
solid, | ||
compound, | ||
vertex, | ||
segment, | ||
polyline, | ||
polygon, | ||
rect, | ||
spline, | ||
circle, | ||
ellipse, | ||
plane, | ||
box, | ||
cylinder, | ||
sphere, | ||
torus, | ||
cone, | ||
text, | ||
fuse, | ||
cut, | ||
intersect, | ||
split, | ||
fill, | ||
clean, | ||
cap, | ||
fillet, | ||
chamfer, | ||
extrude, | ||
revolve, | ||
offset, | ||
sweep, | ||
loft, | ||
check, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.