mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-03 01:04:35 +08:00
27 lines
717 B
Python
27 lines
717 B
Python
# Seva Alekseyev with National Institutes of Health, 2016
|
|
|
|
from . import X3DReader
|
|
|
|
from UM.i18n import i18nCatalog
|
|
catalog = i18nCatalog("cura")
|
|
|
|
def getMetaData():
|
|
return {
|
|
"plugin": {
|
|
"name": catalog.i18nc("@label", "X3D Reader"),
|
|
"author": "Seva Alekseyev",
|
|
"version": "0.5",
|
|
"description": catalog.i18nc("@info:whatsthis", "Provides support for reading X3D files."),
|
|
"api": 3
|
|
},
|
|
"mesh_reader": [
|
|
{
|
|
"extension": "x3d",
|
|
"description": catalog.i18nc("@item:inlistbox", "X3D File")
|
|
}
|
|
]
|
|
}
|
|
|
|
def register(app):
|
|
return { "mesh_reader": X3DReader.X3DReader() }
|