-
Notifications
You must be signed in to change notification settings - Fork 291
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Change to ProjectedOrigin #532
Conversation
It should pass now. In principle after merging this we could release (see: https://github.com/CadQuery/cadquery/projects/4), but maybe we want to merge other open PRs too. |
Codecov Report
@@ Coverage Diff @@
## master #532 +/- ##
==========================================
+ Coverage 93.94% 94.09% +0.14%
==========================================
Files 30 29 -1
Lines 6115 7160 +1045
Branches 640 904 +264
==========================================
+ Hits 5745 6737 +992
- Misses 235 257 +22
- Partials 135 166 +31
Continue to review full report at Codecov.
|
Still need to fix some examples it seems. |
@adam-urbanczyk These changes look ok, but I can take another look once the doc tests are passing if you want. |
Ok ready with all fixes. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@adam-urbanczyk I made a few comments. The PR looks good. Thanks for fixing the selector descriptions too.
OK, I'm going ahead with the merge. |
@adam-urbanczyk Could it be that this breaks the assembly tutorial? It seems to work again when one e.g. adds def make_connector():
rv = (
cq.Workplane()
.box(20, 20, 20)
.faces("<X")
.workplane()
.cboreHole(6, 15, 18)
.faces("<Z")
.workplane(centerOption="CenterOfMass")
.cboreHole(6, 15, 18)
)
# tag mating faces
rv.faces(">X").tag("X").end()
rv.faces(">Z").tag("Z").end()
return rv |
Yest it does, thanks @bernhard-42 ! |
Resolves #314