AU

Results 547 comments of AU
trafficstars

@dcowden usualy it is better to work at the "topology" level of OCCT. So for projection we probably want this: https://www.opencascade.com/doc/occt-7.4.0/refman/html/class_b_rep_proj___projection.html

Clear, I think the conclusion is that we need separate sketching mode that can reference features of the parent solid/workplane/tag. I added a sketching epic to try to organize this.

No update right now, but it will definitely land one day. Would you like to work on it?

You can check yourself: `len(gear1.Solids())`. They are fused into one solid (this is how union works). BTW: if you don't want them to be fused use `compound(...)`

We could increase the tolerance to 0.1 again and increase the edge detection tol in sphinxcadquery (e.g. run the docs form our fork). Maybe it'll help be enough to make...

Are you willing to implement such improvements @rowanG077 ?

Wait with this til #281 is finished.

Rendering is now based on vtk.js. Does anyone get warnings about per?

```python res = cq.Workplane("XY").cylinder( radius=1, height=10, direct=cq.Vector(0, 1, 0), centered=(False, False, True), ).val() ``` results in this: ![afbeelding](https://github.com/CadQuery/cadquery/assets/13981538/54903253-59a9-4778-8ed4-34bbfc8d7ebc) ```python res2 = cq.Workplane("XY").cylinder( radius=1, height=10, direct=cq.Vector(0, 1, 0), centered=(False, True, False),...