diff --git a/dev/.documenter-siteinfo.json b/dev/.documenter-siteinfo.json
index f7a5dcd..2a1b4b9 100644
--- a/dev/.documenter-siteinfo.json
+++ b/dev/.documenter-siteinfo.json
@@ -1 +1 @@
-{"documenter":{"julia_version":"1.10.4","generation_timestamp":"2024-07-07T13:21:11","documenter_version":"1.5.0"}}
\ No newline at end of file
+{"documenter":{"julia_version":"1.10.4","generation_timestamp":"2024-07-07T13:31:07","documenter_version":"1.5.0"}}
\ No newline at end of file
diff --git a/dev/api/index.html b/dev/api/index.html
index 4d30ffd..007d51e 100644
--- a/dev/api/index.html
+++ b/dev/api/index.html
@@ -8,4 +8,4 @@
A = rand(50,50,50) # 3D Matrix
points,faces = isosurface(A, MarchingCubes(iso=1))
Specifies the use of the Marching Cubes algorithm for isosurface extraction. This algorithm provides a good balance between performance and vertex count. In contrast to the other algorithms, vertices may be repeated, so mesh size may be large and it will be difficult to extract topological/connectivity information.
iso (default: 0.0) specifies the iso level to use for surface extraction.
Specifies the use of the Marching Tetrahedra algorithm for isosurface extraction. This algorithm generates more faces. However, each vertex is guaranteed to not be repeated, making this algorithm useful for topological analysis.
iso specifies the iso level to use for surface extraction.
eps is the tolerence around a voxel corner to ensure manifold mesh generation.