mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
8 lines
No EOL
249 B
Python
8 lines
No EOL
249 B
Python
from Cura.Backend.Command import Command
|
|
|
|
class TransferVertCommand(Command):
|
|
def __init__(self):
|
|
super(TransferVertCommand,self).__init__()
|
|
|
|
def send(self, vertex):
|
|
self._socket.sendData(self._id, vertex.toString()) |