开源cura切片软件问题?
需要用到一个cura二次开发版本的软件 这个软件加密了输出文件格式 正常格式为gcode 求大神秒杀!
Copyright (c) 2015 Ultimaker B.V.
Cura is released under the terms of the AGPLv3 or higher.
from . import GCxWriter
from UM.i18n import i18nCatalog
catalog = i18nCatalog("cura")
def getMetaData():
return { "mesh_writer": {
"output": [{
"extension": "gcx",
"description": catalog.i18nc("@item:inlistbox", "Encoded gcode File"),
"mime_type": "text/x-gcx",
"mode": GCxWriter.GCxWriter.OutputMode.TextMode
}]
}
}
def register(app):
return { "mesh_writer": GCxWriter.GCxWriter() }
以上是 开源cura切片软件问题? 的全部内容, 来源链接: utcz.com/p/944842.html