CQ-editor
CQ-editor copied to clipboard
CadQuery GUI editor based on PyQT
Currently, this dialog is thrown upon exit:  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 () and a working state (). 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:...
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:...
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)...