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.
FreeCAD と外部の Python スクリプトを使用して、stp ファイル内のすべてのオブジェクトを選択しようとしています。GUIを開かずにfreecad外部スクリプトを使用してstpファイルからすべてのオブジェクトを選択する方法はありますか?
次のように、すべてのオブジェクトを反復処理できます。
for obj in FreeCAD.ActiveDocument.Objects
そしたら何とかできる…