Compare commits
6 Commits
mactrackpa
...
run_and_ma
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4669eef9a2 | ||
|
|
8f62f098ee | ||
|
|
758afb5f18 | ||
|
|
cf43cee874 | ||
|
|
29b2faeaa8 | ||
|
|
9506307367 |
@@ -4,6 +4,8 @@ This is a fork of [jmwright's fork](https://github.com/jmwright/CQ-editor) of [C
|
|||||||
|
|
||||||
This fork also contains additional changes to the `show_object` function in CQ-editor that make it easier to display and export build123d objects and object lists.
|
This fork also contains additional changes to the `show_object` function in CQ-editor that make it easier to display and export build123d objects and object lists.
|
||||||
|
|
||||||
|
Running into issues? Please click here to join the [***CadQuery, CQ-Editor, and build123d Discord***](https://discord.com/invite/Bj9AQPsCfx)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
[](https://ci.appveyor.com/project/adam-urbanczyk/cq-editor/branch/master)
|
[](https://ci.appveyor.com/project/adam-urbanczyk/cq-editor/branch/master)
|
||||||
@@ -44,6 +46,7 @@ Development builds are also available, but can be unstable and should be used at
|
|||||||
```
|
```
|
||||||
pip install git+https://github.com/jdegenstein/jmwright-CQ-Editor
|
pip install git+https://github.com/jdegenstein/jmwright-CQ-Editor
|
||||||
pip install --pre git+https://github.com/cadquery/cadquery
|
pip install --pre git+https://github.com/cadquery/cadquery
|
||||||
|
pip install git+https://github.com/gumyr/build123d
|
||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
import sys
|
import sys
|
||||||
|
import asyncio
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
|
if sys.platform == 'win32':
|
||||||
|
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
|
||||||
|
|
||||||
from PyQt5.QtWidgets import QApplication
|
from PyQt5.QtWidgets import QApplication
|
||||||
|
|
||||||
NAME = 'CQ-editor'
|
NAME = 'CQ-editor'
|
||||||
|
|||||||
@@ -241,7 +241,7 @@ class Debugger(QObject,ComponentMixin):
|
|||||||
|
|
||||||
@pyqtSlot(bool)
|
@pyqtSlot(bool)
|
||||||
def render(self):
|
def render(self):
|
||||||
seed(371353) #reset the seed every time render is called (preserves colors run to run)
|
seed(59798267586177) #reset the seed every time render is called (preserves colors run to run)
|
||||||
if self.preferences['Reload CQ']:
|
if self.preferences['Reload CQ']:
|
||||||
reload_cq()
|
reload_cq()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user