From 0ed24a5817fea11926b3ead3769b11e18fca50c6 Mon Sep 17 00:00:00 2001 From: "andres.rivera" <andres.rivera@stud.tu-darmstadt.de> Date: Sat, 2 Nov 2024 12:29:03 +0000 Subject: [PATCH] Die Montage der Axles war falsch, die wurden geloscht --- ausarbeitung.ipynb | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/ausarbeitung.ipynb b/ausarbeitung.ipynb index fa16f61..9d697a6 100644 --- a/ausarbeitung.ipynb +++ b/ausarbeitung.ipynb @@ -234,20 +234,17 @@ " wheel.add([rims[i], tires[i]])\n", " wheels.append(wheel)\n", "\n", - "forefront_axle= LegoAssembly(AggregationLayer.ASSEMBLY, \"forefront axle\")\n", - "forefront_axle.add([wheels[0], axle_side_1, wheels[1]])\n", "\n", - "mid_axle=LegoAssembly(AggregationLayer.ASSEMBLY, \"mid axle\")\n", - "mid_axle.add([technic_bushes[0], axles[2], technic_bushes[1]])\n", "\n", - "tail_axle= LegoAssembly(AggregationLayer.ASSEMBLY, \"tail axle\")\n", - "tail_axle.add([wheels[2], axles[1], wheels[3]])\n", + "\n", + "\n", + "\n", "\n", "pinned_battery=LegoAssembly(AggregationLayer.SUBASSEMBLY, \"pinned battery\")\n", "pinned_battery.add([battery, technic_pins[0],technic_pins[1],technic_pins[2],technic_pins[3]])\n", "\n", "pinned_motor=LegoAssembly(AggregationLayer.SUBASSEMBLY, \"pinned motor\")\n", - "pinned_motor.add([battery, technic_pins[0],technic_pins[1],technic_pins[2],technic_pins[3]])\n", + "pinned_motor.add([motor, technic_pins[4],technic_pins[5]])\n", "\n" ] }, -- GitLab