Add House.py

This commit is contained in:
Eclairsombre
2024-04-21 21:18:47 +02:00
parent 0e5e6a9313
commit 436f38c068
2 changed files with 93 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ editor = Editor(buffering=True)
# block = editor.getBlock((0,48,0))
# # Place a block
# editor.placeBlock((394, 132, 741), Block("stone"))
editor.placeBlock((-5, -58, 0), Block("stone"))
# # Build a cube
# geometry.placeCuboid(editor, (458, 92, 488), (468, 99, 471), Block("oak_planks"))
@@ -17,6 +17,6 @@ curve = curve.Curve([(396, 132, 740), (435, 138, 730),
(443, 161, 758), (417, 73, 729)])
curve.compute_curve()
for point in curve.computed_points:
print(point)
editor.placeBlock(point, Block("stone"))
#for point in curve.computed_points:
# print(point)
# editor.placeBlock(point, Block("stone"))