Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix link & code example #37

Merged
merged 1 commit into from
Aug 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion plugins/localselectors/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
```


Expand All @@ -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))
Expand Down
Loading