Skip to content

Commit

Permalink
Change figure path to show it on PyPi Readme page (#171)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkoyama010 authored Feb 6, 2024
1 parent 258132a commit 86c0a76
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ _ = plotter.add_legend(
plotter.show(cpos="xy")
```

![2D mesh](/docs/_static/frontal_delaunay_2d_01.png)
![2D mesh](https://raw.githubusercontent.com/pyvista/pvgmsh/main/docs/_static/frontal_delaunay_2d_01.png)

We can also generate a 3D mesh.

Expand Down Expand Up @@ -125,7 +125,7 @@ _ = plotter.add_axes(
plotter.show()
```

![3D mesh](/docs/_static/delaunay_3d_01.png)
![3D mesh](https://raw.githubusercontent.com/pyvista/pvgmsh/main/docs/_static/delaunay_3d_01.png)

We can clip a mesh by a plane by specifying the origin and normal.
See [clip_with_surface_example](https://docs.pyvista.org/examples/01-filter/clipping-with-surface#clip-with-surface-example) for more examples using this filter.
Expand All @@ -134,7 +134,7 @@ See [clip_with_surface_example](https://docs.pyvista.org/examples/01-filter/clip
clipped = mesh.clip(origin=(0.0, 0.0, 0.0), normal=(0.0, 0.0, 1.0), crinkle=True)
```

![3D mesh](/docs/_static/delaunay_3d_02.png)
![3D mesh](https://raw.githubusercontent.com/pyvista/pvgmsh/main/docs/_static/delaunay_3d_02.png)

## Contributions

Expand Down

0 comments on commit 86c0a76

Please sign in to comment.