From f6f86e1721ea5ea8d11b47175e1e03b8f1df928b Mon Sep 17 00:00:00 2001 From: Xeon0X Date: Sat, 20 Apr 2024 15:49:30 +0200 Subject: [PATCH] Fix main --- main.py | 16 +++++++--------- 1 file changed, 7 insertions(+), 9 deletions(-) diff --git a/main.py b/main.py index 139193e..9f1824a 100644 --- a/main.py +++ b/main.py @@ -3,15 +3,13 @@ import networks.curve as curve -# editor = Editor(buffering=True) +editor = Editor(buffering=True) -# # Get a block -# block = editor.getBlock((0,48,0)) +# Get a block +block = editor.getBlock((0,48,0)) -# # Place a block -# editor.placeBlock((394, 132, 741), Block("stone")) +# Place a block +editor.placeBlock((394, 132, 741), Block("stone")) -# # Build a cube -# geometry.placeCuboid(editor, (458, 92, 488), (468, 99, 471), Block("oak_planks")) - -curve = curve.Curve([(0, 0, 0)]) \ No newline at end of file +# Build a cube +geometry.placeCuboid(editor, (458, 92, 488), (468, 99, 471), Block("oak_planks")) \ No newline at end of file