AU
AU
@haberman thanks for the investigation. Based on your input I managed to find this: https://bugreports.qt.io/browse/QTBUG-87014
Digging deeper: https://stackoverflow.com/questions/64833558/apps-not-popping-up-on-macos-big-sur-11-0-1 Seems that setting this envvar is a workaround: `QT_MAC_WANTS_LAYER=1`
Please ignore the warning - is it working in the end?
I assume you tried the `QT_MAC_WANTS_LAYER=1` trick. If that does not help, I have no other ideas, nor do I have a mac to debug this.
Try with this version, it sets the env variable for you https://github.com/CadQuery/CQ-editor/releases/tag/0.2
Hm, looks like a limitation of `dprism`
What is exactly "the algorithm" you are referring to? I don't understand the remark about handling letter interiors. What I had in mind here was to extend #108 with using...
Thanks for the clarification! I don't think you are right regarding `BRepProj_Projection` - you are confusing projection type with the surface being projected onto. TBH I don't think the proposed...
> `BRepProj_Projection` is great but it doesn't solve one of the central problems with Text on a surface - so I'm looking for some advice here. The problem is that...
Thanks! Note that it should not be needed to use `BRepOffsetAPI_MakeFilling` because you already have the underlying geometry. Here is an example: ```python import OCP w1 = cq.Face.makePlane(2,2).Wires()[0] w2 =...