mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-07 15:07:28 -06:00
More work on CuraEngineBackend (and backend in general)
This commit is contained in:
parent
f8dd19460b
commit
11ac8e85e8
4 changed files with 29 additions and 6 deletions
9
Commands/TransferMeshCommand.py
Normal file
9
Commands/TransferMeshCommand.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
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()
|
Loading…
Add table
Add a link
Reference in a new issue