You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just wanted to mention that I noticed a small change in behavior recently.
The CQ master with on OCP 7.6.1.alpha-py39_0 would return 3 faces (which I believe is correct) for the following example
The latest CQ master with OCP 7.7.0.alpha-py39_0 returns 4 faces
This only happens when both is set to True in the extrude.
Perhaps a non issue but I just wanted to mention it in case
Here is a minimal example to reproduce
importcadqueryascqwire=cq.Workplane('XY').circle(15)
# added combine and clean here but also getting 4 faces without these two set to True explicitlysolid=wire.extrude(until=40, both=True, combine=True, clean=True)
# prints 3 with 7.6.1.alpha-py39_0# prints 4 with 7.7.0.alpha-py39_0print(len(solid.faces().all()))
The text was updated successfully, but these errors were encountered:
Thanks for continuing to develop and improve CQ.
I just wanted to mention that I noticed a small change in behavior recently.
The CQ master with on OCP 7.6.1.alpha-py39_0 would return 3 faces (which I believe is correct) for the following example
The latest CQ master with OCP 7.7.0.alpha-py39_0 returns 4 faces
This only happens when both is set to
True
in the extrude.Perhaps a non issue but I just wanted to mention it in case
Here is a minimal example to reproduce
The text was updated successfully, but these errors were encountered: