MatthiasJ1

Results 74 issues of MatthiasJ1

### OrcaSlicer Version 1.9.0 ### OS version macOS 13 ### Additional system information _No response_ ### Printer Bambu P1S ### How to reproduce Import provided STL and slice with either...

bug

Pip package version: 2.3.1 vsCode extension version: v2.3.1 If I run the following file in vsCode: ```py import ocp_vscode ocp_vscode.show() print("Hello") ``` it will hang indefinitely. If you then press...

bug

Since the measuring tool kit is something that is used purely with mouse interaction in the GUI window, it would make sense to have the controls related to enabling it...

enhancement

Occlude a feature with a shape and then hide that shape using the Clipping tab. Attempting to select the feature will only select the occluding shape.

wontfix

The measure tools are really neat, thanks! It would be great if we could specify custom properties to be displayed when inspecting an object. This could be done by registering...

enhancement

```py l1 = JernArc((0,0), (-1,0), 1, 180).edge().reversed() l2 = JernArc((0,0), (1,0), 2, -90) s = RadiusArc((0,0), (0,-1), 1) f = sweep((l1^0)*s, l1) + sweep((l2^0)*s, l2) # Workaround for #622 ```...

```py l = JernArc((0,0), (-1,0), 1, 180) + JernArc((0,0), (1,0), 2, -90) s = Circle(0.5) ``` ```py p = sweep((l^0)*s, l) ``` ```py p = sweep((l^0)*s.wire(), l) ```

bug

```py l = JernArc((0,0), (1,0), 1, -355) ``` ```py l = JernArc((0,0), (1,0), 1, -360) ```

In the following example, the Builder version is 16x slower: ```py with print_time(): p = Cylinder(20, 20) p += TrapezoidalThread(2*20+2, 2, 60, 10) with print_time(): with BuildPart() as p2: Cylinder(20,...