From fd4a76bce04469c3d24694bd46befb2ddfbc5ed4 Mon Sep 17 00:00:00 2001 From: Bernhard Date: Mon, 20 Mar 2023 08:57:16 +0100 Subject: [PATCH] fix mis-alignment --- examples/build123d_customizable_logo.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/examples/build123d_customizable_logo.py b/examples/build123d_customizable_logo.py index 386d077..107b334 100644 --- a/examples/build123d_customizable_logo.py +++ b/examples/build123d_customizable_logo.py @@ -90,8 +90,7 @@ with BuildSketch() as build: Add(build_text.sketch) # add the customizable text to the build text sketch with Locations( - (l1 @ 1 + l2 @ 1) / 2 - - Vector((cust_vertices[-1].X + cust_vertices[0].X - 1.2), 1.4) + (l1 @ 1 + l2 @ 1) / 2 - Vector((cust_vertices[-1].X + cust_vertices[0].X), 1.4) ): Add(cust_text.sketch)