-
Notifications
You must be signed in to change notification settings - Fork 380
Open
Labels
enhancementNew feature or requestNew feature or request
Description
I like the simplicity of Assembly.save()
:
asm = ( cq.Assembly()
.add(box)
.save('box.step')
)
To export a model, in the other hand, the syntax is not as nice:
box = cq.Workplane().box(1, 2, 3)
cq.exporters.export(box, 'box.step')
I wonder if the assembly export syntax could be applied on a model as well, for consistency and simplicity:
box = ( cq.Workplane()
.box(1, 2, 3)
.save('box.step')
)
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request