Bernhard
Bernhard
For larger content in the sidecar, I always resize the sidecar manually - every single time. Reason being, I haven't found a way to open sidecar with a predefined width....
@jasongrout here is my approach to get the karma tests to work. I haven't rebased it due to time restrictions, but this PR applied to the version before yesterday lead...
I'd like to remap mouse bindings, which seems to work beginning from r99 (https://stackoverflow.com/a/54154920) Unfortunately *pythreejs* still seems to sue r97 ( https://github.com/jupyter-widgets/pythreejs/blob/150ff1c10c868b17fefa63d19153b5ee1fe87f66/js/package.json#L40 ) Now, r97 is from 26 Sep...
Introduced regression when trying to let builder objects participate the find instance algorithm
Need to get back to closing websocket each time for the time being
```python def get_rgba(color, alpha=None, def_color=None): color = def_color if color is None else color if hasattr(color, "toTuple"): # CadQery Color *rgb, a = color.toTuple() elif hasattr(color, "percentage"): # Alg123d Color...
Currently, one can use clipping only outside of measure mode
https://discord.com/channels/964330484911972403/1074840524181217452/1183060124353433641 ```python b1 = Box(10, 10, 1) b2 = Box(5, 5, 1) j1 = RigidJoint("j1", b1, Pos(-4, -4, 0.5)) j2 = RevoluteJoint("j2", b2, Axis((2.5, 2.5, 0), (0, -1, 0))) j1.connect_to(j2,...
I ran into an issue with joints and `located` or `moved` ```pthon b1 = Solid.make_box(1, 1, 1) l = Location((0.5, 0.5, 1), (0, 0, 0)) j1 = RigidJoint("j1", b1, joint_location=l)...
`exec` fails with simple (an natural) approaches: ```python import cadquery as cq l = 1 w = 2 h = 3 def box(): return cq.Workplane().box(l, w, h).edges().fillet(0.1) show(box()) ``` fails...