AU

Results 558 comments of AU
trafficstars

You might be able to abuse `shell` for this purpose.

Maybe you can provide some context?

Here is how you could do it: ```python from cadquery import * c = Workplane().cylinder(5,1) l = Workplane().moveTo(5,0).lineTo(-5,0) res = c.intersect(l).edges().val() start = res.startPoint() stop = res.endPoint() length = res.Length()...

Need to check how ESP does it: ![afbeelding](https://github.com/CadQuery/cadquery/assets/13981538/00c91992-ea7b-45fe-be49-c8c23a79db4a) ![afbeelding](https://github.com/CadQuery/cadquery/assets/13981538/1637145f-4ddb-4b19-b1f9-def8b7c5e245)

How about adding GLTF support to non-assy exporters instead?

Yes, via `cq.Assembly`, something like this should work: ```python cq.Assembly().add(obj).save('filename.gltf') ```