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
(in my case it would be not just a .rect but a .polyline with different at each step shape), but for my this example renders differently than on that page, and seems incorrect -- wide side face connects to the wire of 2nd rect instead of the one before:
re-installed clean using conda create -n cq-editor2 -c cadquery -c conda-forge cq-editor=master to the same result.
PS if someone could share a code snippet for similar, no rotation just vertically loft-ing up polylines -- would be VERY much appreciated, I am cadquery newbee and still fighting how to do it properly
The text was updated successfully, but these errors were encountered:
it seems like you are facing the same issue as I described in #520. Loft sometimes flips wires which you assign to it resulting in self-intersecting lofts. And the use of .union() on self-intersecting pieces produces glitches like you described.
I made a workaround which you can lookup in the other thread. Just need to replace .rect() with .polyline()
I am trying to achieve something like what is described in https://stackoverflow.com/questions/61186339/how-to-iteratively-loft-wires-in-cadquery 👍
(in my case it would be not just a
.rect
but a.polyline
with different at each step shape), but for my this example renders differently than on that page, and seems incorrect -- wide side face connects to the wire of 2nd rect instead of the one before:re-installed clean using
conda create -n cq-editor2 -c cadquery -c conda-forge cq-editor=master
to the same result.versions I have installed in conda
PS if someone could share a code snippet for similar, no rotation just vertically
loft-ing
up polylines -- would be VERY much appreciated, I am cadquery newbee and still fighting how to do it properlyThe text was updated successfully, but these errors were encountered: