Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用带有外部 python 脚本的 FreeCAD 选择 stp 文件中的所有对象。有什么方法可以在不打开 gui 的情况下使用 freecad 外部脚本从 stp 文件中选择所有对象
您可以像这样遍历所有对象:
for obj in FreeCAD.ActiveDocument.Objects
然后你可以用它做一些事情......