blendquery
blendquery copied to clipboard
CadQuery and Build123d integration for Blender
After toggling hot reloading off and on again, it no longer functions as expected; https://github.com/uki-dev/blendquery/assets/7185241/f777d388-9dfa-44be-ae27-243fc44a96a2
In blender, if I load this as a script: ```python import cadquery as Cq ``` Blender would complain "name 'Cq' is not defined".
Consider this: ```python import cadquery as cq def makeBox(): return ( cq.Solid.makeBox(1, 1, 1) ) def makeCylinder(): return ( cq.Solid.makeCylinder(height=5, radius=0.2) ) result = ( cq.Assembly() .add(makeBox(), name="b") .add(makeCylinder(), name="c",...
I'm currently working with Blender 3.6. Although I have no prior experience with Python scripting in Blender, I installed the BlendQuery add-on, tested it, and loved it! After conducting some...