__init__.py 431 B

1234567891011121314151617181920
  1. # Seva Alekseyev with National Institutes of Health, 2016
  2. from . import X3DReader
  3. from UM.i18n import i18nCatalog
  4. catalog = i18nCatalog("cura")
  5. def getMetaData():
  6. return {
  7. "mesh_reader": [
  8. {
  9. "extension": "x3d",
  10. "description": catalog.i18nc("@item:inlistbox", "X3D File")
  11. }
  12. ]
  13. }
  14. def register(app):
  15. return {"mesh_reader": X3DReader.X3DReader()}