Skip to content

Commit b2d5f55

Browse files
committed
correcting package name in examples
1 parent 747e507 commit b2d5f55

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ You can do `pip install -e .` locally in the root of this repo to enable develop
2020
The plugin needs to be imported in order to monkey-patch its method into CadQuery:
2121

2222
```python
23-
import cadquery_assembly_mesh_plugin.plugin
23+
import assembly_mesh_plugin.plugin
2424
```
2525

2626
You can then tag faces in each of the assembly parts and create your asembly. To export the assembly to a mesh file, you do the following.
@@ -38,7 +38,7 @@ Below is a simple example.
3838

3939
```python
4040
import cadquery as cq
41-
import cadquery_assembly_mesh_plugin.plugin
41+
import assembly_mesh_plugin.plugin
4242

4343
shell = cq.Workplane("XY").box(50, 50, 50)
4444
shell = shell.faces(">Z").workplane().rect(21, 21).cutThruAll()

0 commit comments

Comments
 (0)