mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-05-02 00:34:26 +08:00
8 lines
287 B
Python
8 lines
287 B
Python
from UM.Backend.Command import Command
|
|
|
|
class TransferVerticeListCommand(Command):
|
|
def __init__(self):
|
|
super(TransferVertCommand,self).__init__()
|
|
|
|
def send(self, vertices):
|
|
self._socet.sendCommandPacked(0x00200002, vertices.toString()) # Send vertex list |