每次尝试通过FreeCADCmd脚本导入模型时,对象都会丢失所有颜色信息。
这可以在GUI中通过运行宏进行检查
import FreeCAD
import ImportGui
doc = FreeCAD.newDocument()
FreeCAD.setActiveDocument(doc.Name)
ImportGui.insert("file1.stp", doc.Name)
将保留颜色-但由于使用ImportGui,因此不能在命令行上运行。
import FreeCAD
import Import
doc = FreeCAD.newDocument()
FreeCAD.setActiveDocument(doc.Name)
Import.insert("file1.stp", doc.Name)
将导入没有任何颜色信息的模型。
是否可以在不删除颜色信息的情况下将步骤文件导入FreeCADCmd(命令行-因此没有GUI)?
还是有人知道一种无需运行xserver即可运行FreeCAD(GUI版)的方法吗?