├── .gitignore ├── LICENSE ├── PythonOCC ├── add_function_box_example.py ├── nodes.py └── widgets.py ├── README.md └── examples ├── demo_example.json ├── demo_example2.json ├── demo_example3.json └── torus_gcode.json /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .idea/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanneguydv/Pythonocc-nodes-for-Ryven/HEAD/LICENSE -------------------------------------------------------------------------------- /PythonOCC/add_function_box_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanneguydv/Pythonocc-nodes-for-Ryven/HEAD/PythonOCC/add_function_box_example.py -------------------------------------------------------------------------------- /PythonOCC/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanneguydv/Pythonocc-nodes-for-Ryven/HEAD/PythonOCC/nodes.py -------------------------------------------------------------------------------- /PythonOCC/widgets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanneguydv/Pythonocc-nodes-for-Ryven/HEAD/PythonOCC/widgets.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanneguydv/Pythonocc-nodes-for-Ryven/HEAD/README.md -------------------------------------------------------------------------------- /examples/demo_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanneguydv/Pythonocc-nodes-for-Ryven/HEAD/examples/demo_example.json -------------------------------------------------------------------------------- /examples/demo_example2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanneguydv/Pythonocc-nodes-for-Ryven/HEAD/examples/demo_example2.json -------------------------------------------------------------------------------- /examples/demo_example3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanneguydv/Pythonocc-nodes-for-Ryven/HEAD/examples/demo_example3.json -------------------------------------------------------------------------------- /examples/torus_gcode.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tanneguydv/Pythonocc-nodes-for-Ryven/HEAD/examples/torus_gcode.json --------------------------------------------------------------------------------