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

Adding this as a draft to get some feedback on the approach/direction. This would close #311 when completed. Outstanding questions: * Should we set a capping color, or just leave...

This PR adds a new function called `rand_color` to CQ-editor. This function gives a new random color each time it is called e.g. for a new object in `show_object`. Because...

See the description of #358. The issue was previously fixed (tested with older Python versions). The error is reproducible with Python 3.11.

Hello, I've tried the sketch-example ``` result = ( cq.Sketch() .arc((0,0),1.,0.,360.) .arc((1,1.5),0.5,0.,360.) .segment((0.,2),(-1,3.)) .hull() ) ``` with several different cq-editor-packages (windows). Installation from artifacts like described. But in no one...

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") .edges() .fillet(1) ) ``` Terminal output follows:...

Similar to CadQuery/cadquery#502 cq-editor gets stuck trying to render an extrusion of two overlapping circles. In a matter of seconds tens of gigabytes of memory are consumed and the process...

1. I installed cq-editor and cadquery 2. started cq-editor for the first time 3. it showed me some sample code. 4. I changed it, added some symbols in my native...

Running ```sh conda install -c cadquery -c conda-forge cq-editor=master ``` fails with ``` Collecting package metadata (current_repodata.json): done Solving environment: failed with initial frozen solve. Retrying with flexible solve. Collecting...

## To Reproduce I am launching CQ-editor from the console ```console CQ-editor ``` When I resize the window (or change the proportions of the internal frames within the window) the...

MacOS

Issue: Like many QT programs cq-editor fails to scale useful on high dpi screens. Often used go around is to set the env variable QT_SCALE_FACTOR to a nice value. Unfortunately...