Cura/Commands/TransferMeshCommand.py
2014-11-18 10:52:49 +01:00

9 lines
No EOL
327 B
Python

from Cura.Backend.Command import Command
from Cura.plugins.CuraBackendEngine.Commands.TransferVertCommand import TransferVertCommand
class TransferMeshCommand(Command):
def __init__(self):
super(TransferMeshCommand,self).__init__()
def send(self, mesh_data):
vertices = mesh_data.getVerticesList()