-
I'm trying to handle stl export in cq-server.
So far I tried this:
```py
from jupyter_cadquery.ocp_utils import write_stl_file
# ...
assembly = to_assembly(*self.models, names=self.names)
wr…
-
I am just starting to have a play with assemblies and cq-annotate.
One thing I am delighted about is that I can assemble assemblies. This way we can have a complex nested object.
I made this cod…
-
**Test code**
```python
import cadquery as cq
show_object(
cq.Workplane().sphere(1).cut(
cq.Workplane().box(2, 2, 0.5)
).translate((0,0,2))
)
show_object(
cq.Workplane…
-
### 1 Performance issue
I got complaints that `juypter-cadquery` is very slow, so I looked into it. Despite some less optimal implementations on my side, it turns out that the python code for `Shap…
-
This is the default code sample when a user opens CQ-Editor for the first time:
```python
import cadquery as cq
result = cq.Workplane("XY" ).box(3, 3, 0.5).edges("|Z").fillet(0.125)
```
`show…
-
Should probably do that.
-
So I don't know anything really about STEP files, CadQuery or cqparts.
I want to define an assembly, perhaps like [here](https://cqparts.github.io/cqparts/doc/tutorials/assembly.html). I want to ta…
-
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/p…
-
On Windows 11, I have installed MiniForge from latest installer, and had no trouble activating the environment and installing cadquery, which passed its installation test.
However, the installation…
-
It is common to create gmsh physical groups from existing cadquery tags:
```python
with GeometryQL() as geo:
geo = (
geo.load(geom)
.faces(tag="blade").addPhysicalGroup("bla…