Added pointcloud alignment tool for scanner

This commit is contained in:
Jaime van Kessel 2015-04-15 14:45:56 +02:00
parent 0defece4bd
commit f40855a203
2 changed files with 12 additions and 3 deletions

View file

@ -1,4 +1,9 @@
from . import USBPrinterManager
from UM.i18n import i18nCatalog
i18n_catalog = i18nCatalog('plugins')
def getMetaData():
return {
'type': 'extension',
@ -6,9 +11,9 @@ def getMetaData():
'name': 'USB printing',
'author': 'Jaime van Kessel',
'version': '1.0',
'description': 'Accepts G-Code and sends them to a printer. Plugin can also update firmware '
'description': i18n_catalog.i18nc('usb printing description','Accepts G-Code and sends them to a printer. Plugin can also update firmware')
}
}
def register(app):
return USBPrinterManager.USBPrinterManager()