From fa54f7c06400d6c67b353b2f8790604139627237 Mon Sep 17 00:00:00 2001 From: Rafal Paluch Date: Thu, 18 Dec 2025 12:42:17 +0100 Subject: [PATCH] =?UTF-8?q?Ok=20b=C4=99dzie=20dalsza=20cz=C4=99=C5=9B?= =?UTF-8?q?=C4=87=20ucha?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- post_cap.py | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/post_cap.py b/post_cap.py index 1f5bf78..26abdea 100644 --- a/post_cap.py +++ b/post_cap.py @@ -18,10 +18,21 @@ with BuildPart() as p: split(bisect_by=Plane.YZ) revolve(axis=Axis.Z) with BuildLine(Plane.XZ) as l1: - CenterArc(center=(-15, 20), radius=17, start_angle=90, arc_size=180) + ucho = CenterArc(center=(-15, 20), radius=17, start_angle=90, arc_size=180) + punkt1 = ucho @ (0) + punkt2 = ucho @ (1) + # print(punkt1) + with BuildSketch(Plane.ZY) as s2: + with Locations((punkt1.Z, 0)): + Ellipse(4, 10) + # print(punkt2) + with Locations((punkt2.Z, 0)): + Ellipse(4, 10) # export_step(p.part, "/home/pali112/Build123d/debug.step") +# debug(punkt1, name="punkt1") +debug(s2.sketch, name="s2") debug(l1.line, name="ucho") # show_object(p) -debug(s.sketch) +debug(s.sketch, name="kubek")