mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-02 16:54:23 +08:00
12 lines
409 B
Python
12 lines
409 B
Python
from Cura.Backend.Command import Command
|
|
from Cura.plugins.CuraBackendEngine.Commands.TransferMeshCommand import TransferMeshCommand
|
|
|
|
class TransferMeshesCommand(Command):
|
|
def __init__(self):
|
|
super(TransferMeshesCommand,self).__init__()
|
|
|
|
def send(self, meshes):
|
|
command = TransferMeshCommand(self._socket)
|
|
for mesh in meshes:
|
|
command.send(mesh)
|
|
|