I am trying to select all the objects in a stp file using FreeCAD with external python script. Is there any way to select all the objects form stp file with freecad external script without opening gui
Asked
Active
Viewed 455 times
1 Answers
0
You can iterate over all Objects like this:
for obj in FreeCAD.ActiveDocument.Objects
Then you can do something with it...

hisablik
- 111
- 2