CadQuery / cadquery

A python parametric CAD scripting framework based on OCCT
https://cadquery.readthedocs.io
Other
3.15k stars 289 forks source link

cq.Sketch.face does not accept cq.Face #1511

Closed adam-urbanczyk closed 1 month ago

adam-urbanczyk commented 8 months ago

For some use cases this leads to unnecessary code. I'd like to be able to simply add a face to a sketch, e.g.

res = cq.Sketch.add( cq.Face.makeNSidedSurface(...))
adam-urbanczyk commented 1 month ago

Solved by #1633.

res = cq.Sketch.face( cq.Face.makeNSidedSurface(...))