FB

Results 15 issues of FB

Is it possible to add support for step files in the viewer? Would be very nice as it could make a very pleasant dev experience when working with CadQuery.

Turn the assembly into a compound and use Shapes export method to export the assembly. This way the export function does not need to be duplicated, and it is what...

Sample code ```python import cadquery as cq space = 19.05 cherryCutOutSize=14.05 cherrySize=14.58 cols = 2 rows = 4 width = cols * space depth = rows * space lip=3 height...

assembly

Often times you run into the problem of trying to fillet a thing (sketch, workplane, etc) but you set a too high fillet. You then have the "fun" journey of...

```python box = (cq.Workplane("XY") .box(10,10,10) .faces(">Z") .shell(1) ) box_with_sketch = (box.faces(">Z") .sketch() .circle(5) .rect(1,4, mode="s") .rect(4,1, mode="s") .finalize() ) extrude_value = box_with_sketch.extrude(-10) extrude_next = box_with_sketch.extrude(until="next") show_object(extrude_value) show_object(extrude_next.translate((13,0,0))) ``` I would...

OCC kernel issue

Trying to move from OpenSCAD to cad-query. Got the latest release zip as that was the easiest way to install cq. However, trying to follow the code written in the...

infrastructure

If you have several empty options at the top, Chosen removes them all instead of just the first one. ``` html Text ``` The result when using Chosen on the...

Feature Request

Is it normal for hoc to take an extremely long time to run? It took 268.66s for hoc to run on a project with 3006 commits with ~1.5 million lines....

### Description https://github.com/actions/runner-images/blob/main/images/win/scripts/Installers/Install-JavaTools.ps1 This script for windows does not set `ANT_HOME`, but a look at the Linux equivalent over at https://github.com/actions/runner-images/blob/main/images/linux/scripts/installers/java-tools.sh#L137 shows that the environment variable gets set (gradles variables...

OS: Windows
investigate
bug report

Trying to get started with ngdocs and have created a new project to try and get it up. I'm using https://github.com/m7r/grunt-ngdocs to generate the documentation. However, the documentation does not...