-
I have a simple CADQuery script that makes use of several data classes, including this one:
```
@dataclass
class Point2:
'''Represents a 2D point.'''
x : float
y : float
```
I'd like…
-
Hi Maurice, I'm having troubles getting the script to work in this new computer. I think I was using freecad 17 last time but I couldnt find that version so I'm stuck with fc18.
I'm getting this eE…
-
Running the following script causes a crash to desktop:
```
import cadquery as cq
result = (cq.Workplane("XY")
.box(50, 50, 20)
.faces("+Z")
.shell(-1, kind="intersection")
.edg…
-
It seems that, just like using the core editor component from Spyder, the editor could fairly simply be improved by using more of the infrastructure Spyder already provides - search/replace, block com…
-
E.g. `BRepTools.UVBounds_s`
-
Sketches are awesome. Importing DXFs is awesome.
`_importDXF` and its spawn seem kinda hard to use in practice. Generally, I know the names of the layers I want from a drawing. Some drawings have a l…
-
Here is a code that render 2 figures and export them in separated svgs:
```py
import cadquery as cq
from cadquery.cq import Workplane as WP
from cadquery.cq import Vector as V
cube1 = WP('YZ'…
-
This code generates two boxes, one of them crossing the other one. When exporting to SVG with `exportSvg`, edges that start in a visible area and then _intersect_ the other object are rendered incorre…
-
I am trying to port some models from OpenSCAD to CadQuery. The goal ist to create a 2D-SVG-file which can be used by a CNC-Router. The CNC-Router expects that all measures are in Millimeters (at le…
-
I am using cadquery to convert files from STEP to STL.
For this, the files are stored on an AWS server with public-read.
To import, I use the following statement:
```
afile = cq.importers.im…