AU
AU
Should be solved by: https://github.com/CadQuery/OCP/pull/75/
Build 127 still bundles OCP 7.5.3.0 build 2 and it should be build 3 (see https://github.com/jmwright/CQ-editor/runs/4845131285?check_suite_focus=true#step:4:154 ). I'm going to mark build 2 as broken, maybe it'll help.
@westurner sounds like something out of scope of CQ-editor ATM. @voneiden that'd be great. Just change the default material and if you have some time add a `Default object material`...
Not implemented ATM.
You can do it via `cq.Shape.transformGeometry`. It is not a good idea to expose it in the fluent API - general transformations will change the underlying geometries which will make...
Revolution with a non-constant radius sounds like a sweep. Just use `sweep` for that. If you insist on using it, just use the method I mentioned above. Note that shell...
This seems to work (but is only C0 AFAIK): ```python import OCP bldr = OCP.BRepOffsetAPI.BRepOffsetAPI_ThruSections(True, False) w1 = cq.Workplane().ellipse(5,10).val() w2 = cq.Workplane(origin=(0,0,10)).ellipse(12,25).val() v1 = cq.Vertex.makeVertex(0,0,15.5) bldr.AddWire(w1.wrapped) bldr.AddWire(w2.wrapped) bldr.AddVertex(v1.wrapped) res =...
Actually it is an unintentional feature of the spyder editor widget. I'd rather remove it than add to Tools.
The release of CQ-editor is related to the release of CQ
I don't think that this is sustainable - tomorrow there will be someone with yet another issue that is not present in master. Do you know where we could upload...