diff --git a/2.3.3/SphericalMeshing/CartesianTriangulations/Ex2-CartesianGrids.html b/2.3.3/SphericalMeshing/CartesianTriangulations/Ex2-CartesianGrids.html index f5c7869..0f9b3d8 100644 --- a/2.3.3/SphericalMeshing/CartesianTriangulations/Ex2-CartesianGrids.html +++ b/2.3.3/SphericalMeshing/CartesianTriangulations/Ex2-CartesianGrids.html @@ -492,34 +492,7 @@
Square mesh 121 25921
Elliptical mesh 21 1301
(276,) (276,)
-
---------------------------------------------------------------------------
-ValueError Traceback (most recent call last)
-Cell In[1], line 31
- 28 print(str_fmt.format('Elliptical mesh', ellip0.npoints, ellipR.npoints))
- 30 randR = stripy.cartesian_meshes.random_mesh(extent, nsamples)
----> 31 rand0 = stripy.Triangulation(randR.x[::50], randR.y[::50])
- 32 rand2 = stripy.Triangulation(randR.x[::25], randR.y[::25])
- 35 print(str_fmt.format('Random mesh', rand0.npoints, randR.npoints))
-
-File ~/.local/lib/python3.10/site-packages/stripy/cartesian.py:141, in Triangulation.__init__(self, x, y, refinement_levels, permute, tree)
- 138 self.permute = permute
- 139 self.tree = tree
---> 141 self._update_triangulation(x, y)
- 143 for r in range(0,refinement_levels):
- 144 x, y = self.uniformly_refine_triangulation(faces=False, trisect=False)
-
-File ~/.local/lib/python3.10/site-packages/stripy/cartesian.py:196, in Triangulation._update_triangulation(self, x, y)
- 194 raise ValueError('ierr={} in trmesh\n{}'.format(ierr, _ier_codes[9999]))
- 195 elif ierr != 0:
---> 196 raise ValueError('ierr={} in trmesh\n{}'.format(ierr, _ier_codes[ierr]))
- 198 self.npoints = npoints
- 199 self._x = x
-
-ValueError: ierr=-2 in trmesh
-the first three nodes are collinear.
-Set permute to True or reorder nodes manually.
+Random mesh 100 5000
0.048347335 0.24072336
+0.048985202 0.2443841
-0.04880738 0.24497788
+0.04879181 0.2449923
diff --git a/2.3.3/SphericalMeshing/CartesianTriangulations/Ex5-Smoothing.html b/2.3.3/SphericalMeshing/CartesianTriangulations/Ex5-Smoothing.html
index 47d42fa..0b31b4c 100644
--- a/2.3.3/SphericalMeshing/CartesianTriangulations/Ex5-Smoothing.html
+++ b/2.3.3/SphericalMeshing/CartesianTriangulations/Ex5-Smoothing.html
@@ -646,12 +646,12 @@ Smoothing operations