blendquery icon indicating copy to clipboard operation
blendquery copied to clipboard

CadQuery and Build123d integration for Blender

Results 4 blendquery issues
Sort by recently updated
recently updated
newest added

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

bug

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",...

enhancement

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...

bug