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

CadQuery GUI editor based on PyQT

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

Currently, this dialog is thrown upon exit: ![image](https://user-images.githubusercontent.com/46539653/122006570-a6740100-cdbf-11eb-92a6-41a804271845.png) Exit question is formulated in opposite logic from the rest of applications. It is usual to get this kind of question and...

## To Reproduce Here's the cadquery script I am using. Rendering this causes CQ-Editor to segfault. ```python import cadquery as cq start_radius = 30 slot_size = 7 slot_inset = 10...

The Render button on the buttons-bar has a default state (![image](https://user-images.githubusercontent.com/1665542/115066665-28df6200-9ef0-11eb-9cb5-4a5e57b82d38.png)) and a working state (![image](https://user-images.githubusercontent.com/1665542/115066727-372d7e00-9ef0-11eb-9be5-9f950eaea0fc.png)). This gives a good feedback to the user about the rendering status. It could...

since the application doesn't look visually different when it is rendering/drawing and when you can interact with it, I think it would be useful if there was some way to...

I’m filing this here because I’m not certain where it should go and CQ-editor is where I *observe* it, but it could belong on OCP or OpenCascade or something. **Environment:**...

The possibility to display the result of python's `print()` can be very useful when debugging. It could be interesting to have a dedicated window that displays stdout.

Helpful if feedback that the display may be showing colour and position defaults, due to lack of _show_object()_ code function. Could be simple text warning within 'Log viewer',

I used the [Assembly Tutorial](https://cadquery.readthedocs.io/en/latest/assy.html), which I got to load after downloading 'vslot-2020_1.dxf' following a link from a related [GitHub Issue](https://github.com/CadQuery/cadquery/issues/589). Version: 0.3.0dev. 'Log viewer' reports: ``` [2021-04-14 16:55:01.679632] ERROR:...

bug
enhancement

I'm running the following script in CQ-editor on a Mac M1 running Big Sur: ``` #! /usr/bin/env python3 from typing import * import cadquery as CQ def assembly() -> Any:...

bug

Hello, I have noticed that if I have in a file 'file1.py' a function like this this : ``` import cadquery as cq def make_cylinder(radius): cyl = cq.Workplane().circle(5).extrude(10) try: show_object(cyl)...