mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-04-23 14:19:37 +08:00
26 lines
695 B
Python
26 lines
695 B
Python
# Copyright (c) 2015 Ultimaker B.V.
|
|
# Cura is released under the terms of the AGPLv3 or higher.
|
|
|
|
from . import SolidView
|
|
|
|
from UM.i18n import i18nCatalog
|
|
i18n_catalog = i18nCatalog("cura")
|
|
|
|
def getMetaData():
|
|
return {
|
|
"plugin": {
|
|
"name": i18n_catalog.i18nc("@label", "Solid View"),
|
|
"author": "Ultimaker",
|
|
"version": "1.0",
|
|
"description": i18n_catalog.i18nc("@info:whatsthis", "Provides a normal solid mesh view."),
|
|
"api": 3
|
|
},
|
|
"view": {
|
|
"name": i18n_catalog.i18nc("@item:inmenu", "Solid"),
|
|
"weight": 0
|
|
}
|
|
}
|
|
|
|
def register(app):
|
|
return { "view": SolidView.SolidView() }
|