FreeCAD Tips 1 : Clear your workspace
/If you use FreeCAD from Python (I might be the only one) then here’s a tiny bit of code that’s very useful.
# Delete all existing objects in the document
for obj in doc.Objects:
doc.removeObject(obj.Name)
This allows you replace existing code generated objects with new ones so your workspace doesn’t fill up with stuff.