CQ-editor icon indicating copy to clipboard operation
CQ-editor copied to clipboard

CadQuery GUI editor based on PyQT

Results 145 CQ-editor issues
Sort by recently updated
recently updated
newest added

Take a look how https://github.com/fougue/mayo does it.

enhancement
gui

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_object()` is not...

Back when issue #218 was still open, I had a workaround so I could see assemblies in cq-editor and avoid that crash: ```python for key, val in asy.traverse(): shapes =...

enhancement
usability

I have a very simple script: ``` import cadquery as cq result = cq.importers.importStep('./file.step') show_object(result, options={"alpha":0.5, "color": (64, 164, 223)}) ``` When I run it via "Run", i get an...

question
usability

Hello. I am trying to get the CQ editor to run on Linux Mint. I am unfamiliar with Anaconda so I downloaded the release package for my system. Following the...

question

Sorry, I couldn't find a community forum so I'm asking here: I have a CadQuery script that I'm running in cq-editor. How can I get the filename of my script?

question

If, after installing cadquery and cq-editor via conda, I issue the command "conda update cadquery", when the update is finished, cq-editor exits without any error messages. I'm not sure if...

infrastructure

I think it would be nice providing an AppImage for Linux. I think AppImage suits better than flatpak/snap for CQ-editor. And it is easier to create it (this is my...

infrastructure

I've been running the master branches of both repositories on macOS Catalina. I installed on a BigSur machine and cq-editor never launches. I get an empty python icon in the...

help wanted
MacOS

# To Reproduce While working on the creation of a thread library I discovered that cq-editor crashes on extrusions with rotation and was able to reproduce the problem with the...