From 86c0a761356b87b85faf4b861f414cfb81157c45 Mon Sep 17 00:00:00 2001 From: Tetsuo Koyama Date: Tue, 6 Feb 2024 16:37:03 +0900 Subject: [PATCH] Change figure path to show it on PyPi Readme page (#171) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index a4639aa8..7baf7899 100644 --- a/README.md +++ b/README.md @@ -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. @@ -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. @@ -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