Jeremy Wright

Results 377 comments of Jeremy Wright

Does/can GH Discussions replace a traditional email list like Groups.io? If you need a GitHub account to use it, I think there are people who use Google Groups who would...

You could look at the implementation of `lineTo()` to get some inspiration on how to do this. https://github.com/CadQuery/cadquery/blob/master/cadquery/cq.py#L1601

@qkum Are you running CQ-editor via conda, or one of the pre-built packages?

It is a non-trivial task to build CadQuery's dependencies. You are correct that the documentation on this topic is pretty sparse. If you just want to use the library by...

> Are there any plans to support Apple Silicon natively? I don't think the core team is opposed to it, but I also don't think that any of us has...

@utkuunlu Have a look at the `makeSolid` argument of sweep. https://cadquery.readthedocs.io/en/latest/classreference.html?highlight=sweep#cadquery.Solid.sweep

Is your profile closed before the sweep? I only had time to take a glance, but with the polyline and two points you might be ending up with a 1D...

Ok, thanks @Jojain . I was in a hurry to answer and didn't properly understand the intent.

@mryndzionek There will still be weird behavior with this code, but it seems better. ```python import cadquery as cq a = (cq.Workplane().box(5, 5, 5) .faces("Z").fillet(0.1)) a = a.faces("

@Hades32 There is an Autoreload option in Preferences that will cause CQ-editor to re-render the model when you save the file in an external editor.