From 95ffaa31bd1b8a2726305087203ea8e956d56e2c Mon Sep 17 00:00:00 2001 From: Alex Bardales Date: Sat, 7 Sep 2024 14:57:51 -0700 Subject: [PATCH] Update advantages.rst Current advantages.rst embeds the wrong lines from examples/intersecting_pipes.py. With these changes, the lines you would see are ```python from build123d import * with BuildPart() as pipes: box = Box(10, 10, 10, rotation=(10, 20, 30)) with BuildSketch(*box.faces()) as pipe: Circle(4) extrude(amount=-5, mode=Mode.SUBTRACT) with BuildSketch(*box.faces()) as pipe: Circle(4.5) Circle(4, mode=Mode.SUBTRACT) extrude(amount=10) fillet(pipes.edges(Select.LAST), 0.2) ``` --- docs/advantages.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/advantages.rst b/docs/advantages.rst index 41679c5e..690d8712 100644 --- a/docs/advantages.rst +++ b/docs/advantages.rst @@ -81,7 +81,7 @@ by the last operation and fillets them. Such a selection would be quite difficul otherwise. .. literalinclude:: ../examples/intersecting_pipes.py - :lines: 29, 37-48 + :lines: 30, 39-49 Extensions