Skip to content

Commit

Permalink
Add a path to alias in usage (#327)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoyama010 authored Aug 16, 2024
1 parent e85f4e9 commit b5e468a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ source = pv.Polygon(n_sides=4, radius=8, fill=False)
We can then generate a 2D mesh.

```python
delaunay_2d = Delaunay2d(edge_source=source, target_sizes=2.0)
delaunay_2d = sg.Delaunay2d(edge_source=source, target_sizes=2.0)
```

To visualize the model, we can use PyVista.
Expand All @@ -73,7 +73,7 @@ We can also generate a 3D mesh.

```python
source = pv.Cube()
delaunay_3d = Delaunay3D(edge_source=source, target_sizes=0.2)
delaunay_3d = sg.Delaunay3D(edge_source=source, target_sizes=0.2)
```

```python
Expand Down

0 comments on commit b5e468a

Please sign in to comment.