AU

Results 575 comments of AU

Do you want to block this PR on that issue? OCP was compiled with gcc 8 AFAICT, I do not compile other libraries myself.

> > Do you want to block this PR on that issue? > > Not really, but we should at least take the version pin back out of setup.py since...

After #1161 master is green, merging.

This is not related to #520, you can make your code work like so (`clean=False` in the union): ```python import cadquery as cq wp = cq.Workplane("XY").rect(1,2).workplane() result = None for...

@yarikoptic note that you can also use sweep to get smoothly varying sections

I think you want `tol` (fuzzy bool ops) and not `glue` (AFAIR faster fusing of touching shapes). Yeah, exposing `tol` might be useful.

Actually I'd vote for extending `workplane` to support this use case (`.workplane('XY')` ) and the one described in #357 (`.workplane((1,1,1)`). I find this kind of API much cleaner. And there...

Here is an example: ```python from cadquery import * s1 = Sketch().segment((0, 0), (1, 0)).segment((1, 1)).close().assemble() w1 = ( cq.Workplane() .add(s1) .extrude(1) ) w2 = ( cq.Workplane() .add(s1.located(loc=Location((1,1,0)))) .extrude(1) )...

The warning is likely not related to the issue. I get it on my system too. sob., 20 sie 2022, 23:46 użytkownik Lorenz ***@***.***> napisał: > I cannot reproduce a...

> Sir, it seems that this error is caused by not having `re2c` installed. Install `re2c` command in MSYS2: > > ```shell > pacman -S msys/re2c > pacman -S msys/bison...