From 3c8e43d553e060547a04a85ec34e6906fe314000 Mon Sep 17 00:00:00 2001 From: nobkd <44443899+nobkd@users.noreply.github.com> Date: Sun, 11 Aug 2024 20:23:17 +0200 Subject: [PATCH] docs: fix link & code example --- plugins/localselectors/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plugins/localselectors/README.md b/plugins/localselectors/README.md index 3628554..2905fe7 100644 --- a/plugins/localselectors/README.md +++ b/plugins/localselectors/README.md @@ -6,7 +6,7 @@ This is done by using the lowercase letters `x`, `y`, and `z` instead of the upp ## Installation ``` -pip install -e "git+https://github.com/CadQuery/cadquery-plugins.git#egg=localcoordinates&subdirectory=plugins/localcoordinates" +pip install -e "git+https://github.com/CadQuery/cadquery-plugins.git#egg=localselectors&subdirectory=plugins/localselectors" ``` @@ -22,6 +22,7 @@ To use this plugin after it has been installed, import it to automatically patch ```python import cadquery as cq +import localselectors # Adds local selectors to cadquery.Workplane result = (cq.Workplane().rect(50, 50) .extrude(50))