diff --git a/.github/workflows/gen_docs.yml b/.github/workflows/gen_docs.yml index 13324589..f46d6fa1 100644 --- a/.github/workflows/gen_docs.yml +++ b/.github/workflows/gen_docs.yml @@ -21,7 +21,7 @@ jobs: run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil gifsicle libfuse2 - name: Install OpenSCAD-DocsGen package. - run: sudo pip3 install openscad-docsgen + run: sudo pip3 install openscad-docsgen imageio - name: Install OpenSCAD run: | diff --git a/.github/workflows/gen_tutorials.yml b/.github/workflows/gen_tutorials.yml index 0bc8e61e..f67684e0 100644 --- a/.github/workflows/gen_tutorials.yml +++ b/.github/workflows/gen_tutorials.yml @@ -21,7 +21,7 @@ jobs: run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil gifsicle libfuse2 - name: Install OpenSCAD-DocsGen package. - run: sudo pip3 install openscad-docsgen + run: sudo pip3 install openscad-docsgen imageio - name: Install OpenSCAD run: | diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 8a5cab9f..803adcaa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,7 +43,7 @@ jobs: run: sudo apt-get install python3-pip python3-dev python3-setuptools python3-pil libfuse2 - name: Install OpenSCAD-DocsGen package. - run: sudo pip3 install openscad-docsgen + run: sudo pip3 install openscad-docsgen imageio - name: Install OpenSCAD run: | diff --git a/isosurface.scad b/isosurface.scad index 599df2b9..081805fe 100644 --- a/isosurface.scad +++ b/isosurface.scad @@ -3523,7 +3523,7 @@ function _showstats_isosurface(voxsize, bbox, isoval, cubes, triangles, faces) = // Function&Module: contour() // Synopsis: Creates a 2D contour from a function or array of values. // SynTags: Geom,Path,Region -// Topics: Isosurfaces, Path Generators (2D), Regions +// Topics: Contours, Path Generators (2D), Regions // Usage: As a module // contour(f, isovalue, bounding_box, pixel_size, [pixel_count=], [use_centers=], [smoothing=], [exact_bounds=], [show_stats=], [show_box=], ...) [ATTACHMENTS]; // Usage: As a function diff --git a/scripts/img2scad.html b/scripts/img2scad.html index 4830684c..843baca0 100644 --- a/scripts/img2scad.html +++ b/scripts/img2scad.html @@ -8,8 +8,11 @@ Version 6: 23 April 2025 - added cropping UI Version 7: 25 April 2025 - added contrast and threshold sliders Version 8: 26 April 2025 - added file size estimate to output section Version 9: 20 May 2025 - improved appearance UI, added Sobel edge detection +Version 10: 21 May 2025 - Added array_name_size value at top of output file +Version 11: 22 May 2025 - Fixed filter artifacts at image edges, added sharpening filter +Version 12: 30 May 2025 - Made filters mutually exclusive --> - Image to OpenSCAD array, v9 + Image to OpenSCAD array, v12