Lorenz

Results 115 comments of Lorenz

I find the sweep is successful when specifying the `isFrenet` arg as True.

ShapeUpgrade_UnifySameDomain? I find the red wire is inside with `cutThruAll(clean=False)`.

I had assumed the new `slot` implementation was by design.

Validated in current docs on Read The Docs. ![image](https://user-images.githubusercontent.com/16394272/184246704-f93f33db-dc83-41e5-ae8a-4ade76598325.png)

I wasn't sure if the discussion in #965 had concluded. Regarding the use of such an STL, it may be that the user wants to access the solver functionality for...

Try `useLocalCoordinates=True`. The first output is correct because the `rarray` points will be in XY in global coordinates.

The `rarray` points are: ``` Vector: (99.0, 99.0, 59.0) Vector: (99.0, 99.0, 99.0) Vector: (99.0, 99.0, 139.0) ``` Maybe I got it wrong and @greyltc is correct to expect the...

Would you be against changing `angle_cost` to address this? https://github.com/CadQuery/cadquery/blob/4fcada66e9fb5d8cebfdf78376154b7b253df991/cadquery/occ_impl/sketch_solver.py#L136 Say by rotating the tangent vector v1 by TOL based on the IsOpposite check? ``` if v1.IsOpposite(v2,TOL/2): v1 = v1.Rotated(TOL)...

I tested with 3 different viewers today. All recognized files with .wrl extension. meshlab did not recognize VRML files with .vrml extension (the other two were dune, freewrl). I'd suggest...

I'm testing a fix on the CQ side in #1157. Example script: ```python import cadquery as cq box = cq.Workplane().box(1, 2, 3) assy = cq.Assembly(name="toplevel") assy.add(box, name="box1") assy.add(box, name="box2", loc=cq.Location((4,...